From 0936dae8a4efc62f4ca54c4872ee2562961372df Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Tue, 6 Nov 2018 14:21:57 +0000 Subject: [PATCH] blockchain: remove "0 is height" shortcut from get_output_distribution This prevents asking for just 0, and the RPC layer already does this --- src/cryptonote_core/blockchain.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 030798ad7..798f67e09 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -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)