mirror of
https://github.com/monero-project/monero.git
synced 2025-08-08 16:02:18 -04:00
remove empty statements
Cleaning up a little around the code base.
This commit is contained in:
parent
6b2b1d6368
commit
c61abf87c0
11 changed files with 14 additions and 14 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue