blockchain: remove "0 is height" shortcut from get_output_distribution

This prevents asking for just 0, and the RPC layer already does this
pull/127/head
moneromooo-monero 6 years ago
parent 872c7eb26a
commit 0936dae8a4
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -1823,8 +1823,6 @@ bool Blockchain::get_output_distribution(uint64_t amount, uint64_t from_height,
uint64_t db_height = m_db->height();
if (db_height == 0)
return false;
if (to_height == 0)
to_height = db_height - 1;
if (start_height >= db_height || to_height >= db_height)
return false;
if (amount == 0)

Loading…
Cancel
Save