blockchain: remove "0 is height" shortcut from get_output_distribution
This prevents asking for just 0, and the RPC layer already does this
This commit is contained in:
parent
872c7eb26a
commit
0936dae8a4
@ -1823,8 +1823,6 @@ bool Blockchain::get_output_distribution(uint64_t amount, uint64_t from_height,
|
|||||||
uint64_t db_height = m_db->height();
|
uint64_t db_height = m_db->height();
|
||||||
if (db_height == 0)
|
if (db_height == 0)
|
||||||
return false;
|
return false;
|
||||||
if (to_height == 0)
|
|
||||||
to_height = db_height - 1;
|
|
||||||
if (start_height >= db_height || to_height >= db_height)
|
if (start_height >= db_height || to_height >= db_height)
|
||||||
return false;
|
return false;
|
||||||
if (amount == 0)
|
if (amount == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user