diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-03-13 17:22:33 +0100 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-03-13 17:22:33 +0100 |
commit | c6102d5c1b3c237b99af815e81ad918d47064099 (patch) | |
tree | df2110b7073389be0789f05b7980eb584c8ba6a9 | |
parent | Merge pull request #1863 (diff) | |
parent | core: don't try to re-relay an empty set of pool transactions (diff) | |
download | monero-c6102d5c1b3c237b99af815e81ad918d47064099.tar.xz |
Merge pull request #1864
74b216a1 core: don't try to re-relay an empty set of pool transactions (moneromooo-monero)
-rw-r--r-- | src/cryptonote_core/cryptonote_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 9c5fae4ef..d53cacd8e 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -796,7 +796,7 @@ namespace cryptonote { // we attempt to relay txes that should be relayed, but were not std::list<std::pair<crypto::hash, cryptonote::transaction>> txs; - if (m_mempool.get_relayable_transactions(txs)) + if (m_mempool.get_relayable_transactions(txs) && !txs.empty()) { cryptonote_connection_context fake_context = AUTO_VAL_INIT(fake_context); tx_verification_context tvc = AUTO_VAL_INIT(tvc); |