diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-02-04 14:38:35 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-02-04 14:38:35 -0500 |
commit | d7aeb5a9f86442b5ac4464896cc7d8eb2740dadb (patch) | |
tree | 2ba8b655c50671c13c04f8dba85238e0b0d8bb50 /src | |
parent | Merge pull request #6140 (diff) | |
parent | blockchain: fix flushing txes from the txpool (diff) | |
download | monero-d7aeb5a9f86442b5ac4464896cc7d8eb2740dadb.tar.xz |
Merge pull request #6233
8a27645 blockchain: fix flushing txes from the txpool (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index f99073719..78893fdf2 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -3668,7 +3668,7 @@ bool Blockchain::flush_txes_from_pool(const std::vector<crypto::hash> &txids) uint64_t fee; bool relayed, do_not_relay, double_spend_seen, pruned; MINFO("Removing txid " << txid << " from the pool"); - if(!m_tx_pool.have_tx(txid, relay_category::all) && !m_tx_pool.take_tx(txid, tx, txblob, tx_weight, fee, relayed, do_not_relay, double_spend_seen, pruned)) + if(m_tx_pool.have_tx(txid, relay_category::all) && !m_tx_pool.take_tx(txid, tx, txblob, tx_weight, fee, relayed, do_not_relay, double_spend_seen, pruned)) { MERROR("Failed to remove txid " << txid << " from the pool"); res = false; |