diff options
author | Sumo Gr <sumogr@mail.com> | 2020-04-29 11:04:44 +0300 |
---|---|---|
committer | sumogr <sumogr@mail.com> | 2020-04-29 10:03:51 +0000 |
commit | dd807b84104c126942f54dca4b060c45c1c28e30 (patch) | |
tree | fc16afa9acf7380455141fc52a1bae4e31c7231e /src | |
parent | Merge pull request #6470 (diff) | |
download | monero-dd807b84104c126942f54dca4b060c45c1c28e30.tar.xz |
txpool.cpp: rename var to fix for old g++ version (xenial default)
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index a7b2e4422..469319824 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -615,8 +615,8 @@ namespace cryptonote CRITICAL_REGION_LOCAL1(m_blockchain); m_blockchain.for_all_txpool_txes([this, &hashes, &txes](const crypto::hash &txid, const txpool_tx_meta_t &meta, const cryptonote::blobdata*) { - const auto relay_method = meta.get_relay_method(); - if (relay_method != relay_method::block && relay_method != relay_method::fluff) + const auto tx_relay_method = meta.get_relay_method(); + if (tx_relay_method != relay_method::block && tx_relay_method != relay_method::fluff) return true; const auto i = std::find(hashes.begin(), hashes.end(), txid); if (i == hashes.end()) |