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:
moneromooo-monero 2018-11-06 14:21:57 +00:00
parent 872c7eb26a
commit 0936dae8a4
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 0 additions and 2 deletions

View File

@ -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)