remove empty statements

Cleaning up a little around the code base.
This commit is contained in:
Interchained 2020-02-14 18:35:53 -05:00 committed by Mark Evans
parent 6b2b1d6368
commit c61abf87c0
11 changed files with 14 additions and 14 deletions

View file

@ -5169,12 +5169,12 @@ bool Blockchain::for_all_transactions(std::function<bool(const crypto::hash&, co
bool Blockchain::for_all_outputs(std::function<bool(uint64_t amount, const crypto::hash &tx_hash, uint64_t height, size_t tx_idx)> f) const
{
return m_db->for_all_outputs(f);;
return m_db->for_all_outputs(f);
}
bool Blockchain::for_all_outputs(uint64_t amount, std::function<bool(uint64_t height)> f) const
{
return m_db->for_all_outputs(amount, f);;
return m_db->for_all_outputs(amount, f);
}
void Blockchain::invalidate_block_template_cache()