diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-02-18 14:06:47 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-02-18 14:06:47 -0500 |
| commit | 6556c33f133782b682938f14360cc6aeb39901c3 (patch) | |
| tree | 8ee3c410f75a25d63adc96e94c46e81174f6cb2f /tests/core_tests | |
| parent | 906a62c6b269bb6adea45fc444efa4ee5e848a69 (diff) | |
| parent | bd129849f0b634bddf64a195097b15d585e8f2bd (diff) | |
| download | monzero-core-6556c33f133782b682938f14360cc6aeb39901c3.tar.gz monzero-core-6556c33f133782b682938f14360cc6aeb39901c3.tar.xz monzero-core-6556c33f133782b682938f14360cc6aeb39901c3.zip | |
Merge pull request #7355
bd12984 Remove copies from foreach loops (thanks to Clang) (Lee Clagett)
1572df9 Removing unused namespace alias (Lee Clagett)
Diffstat (limited to 'tests/core_tests')
| -rw-r--r-- | tests/core_tests/tx_pool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core_tests/tx_pool.cpp b/tests/core_tests/tx_pool.cpp index 26c0d7304..166eb6075 100644 --- a/tests/core_tests/tx_pool.cpp +++ b/tests/core_tests/tx_pool.cpp @@ -390,7 +390,7 @@ bool txpool_double_spend_base::check_changed(cryptonote::core& c, const size_t e } } - for (const std::pair<crypto::hash, uint64_t>& hash : m_all_hashes) + for (const std::pair<const crypto::hash, uint64_t>& hash : m_all_hashes) { cryptonote::blobdata tx_blob{}; if (!c.get_pool_transaction(hash.first, tx_blob, cryptonote::relay_category::all)) @@ -408,7 +408,7 @@ bool txpool_double_spend_base::check_changed(cryptonote::core& c, const size_t e for (const crypto::hash& hash : m_no_relay_hashes) difference.erase(hash); - for (const std::pair<crypto::hash, uint64_t>& hash : difference) + for (const std::pair<const crypto::hash, uint64_t>& hash : difference) { if (c.pool_has_tx(hash.first)) { |
