diff options
| author | Howard Chu <hyc@symas.com> | 2017-06-01 13:29:51 +0100 |
|---|---|---|
| committer | Howard Chu <hyc@symas.com> | 2017-06-01 14:14:24 +0100 |
| commit | d17c0fc2d0ae52260a93ec8985b7ebb7ad3cfea7 (patch) | |
| tree | 74598f10a771ee39e05778a20d1be805727169e0 /src/cryptonote_core/blockchain.cpp | |
| parent | 8fbbefb8db3258e20f09efde1060e7a147a8887c (diff) | |
| download | monzero-core-d17c0fc2d0ae52260a93ec8985b7ebb7ad3cfea7.tar.gz monzero-core-d17c0fc2d0ae52260a93ec8985b7ebb7ad3cfea7.tar.xz monzero-core-d17c0fc2d0ae52260a93ec8985b7ebb7ad3cfea7.zip | |
Don't copy blockchain for coinbase_tx_sum
Changed Blockchain::for_all_blocks() to for_blocks_range()
Operate on blockchain in-place instead of building a copy first.
Diffstat (limited to 'src/cryptonote_core/blockchain.cpp')
| -rw-r--r-- | src/cryptonote_core/blockchain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 7fb85ee76..6f2977c5b 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -4164,9 +4164,9 @@ bool Blockchain::for_all_key_images(std::function<bool(const crypto::key_image&) return m_db->for_all_key_images(f); } -bool Blockchain::for_all_blocks(std::function<bool(uint64_t, const crypto::hash&, const block&)> f) const +bool Blockchain::for_blocks_range(const uint64_t& h1, const uint64_t& h2, std::function<bool(uint64_t, const crypto::hash&, const block&)> f) const { - return m_db->for_all_blocks(f); + return m_db->for_blocks_range(h1, h2, f); } bool Blockchain::for_all_transactions(std::function<bool(const crypto::hash&, const cryptonote::transaction&)> f) const |
