diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-10-27 16:28:33 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-27 16:28:33 -0500 |
commit | 4c9fd8d86d59752b436cddf5aac448351f5bf474 (patch) | |
tree | e32a68e111f447fde2768e4e69ebfb7451311826 /src | |
parent | Merge pull request #6038 (diff) | |
parent | blockchain: fix unwanted error when probing the pool for a tx (diff) | |
download | monero-4c9fd8d86d59752b436cddf5aac448351f5bf474.tar.xz |
Merge pull request #6044
eb16755 blockchain: fix unwanted error when probing the pool for a tx (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index b7e9f4ca2..b13ecbbf1 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -1765,9 +1765,18 @@ bool Blockchain::handle_alternative_block(const block& b, const crypto::hash& id { cryptonote::tx_memory_pool::tx_details td; cryptonote::blobdata blob; - if (m_tx_pool.get_transaction_info(txid, td)) + if (m_tx_pool.have_tx(txid)) { - bei.block_cumulative_weight += td.weight; + if (m_tx_pool.get_transaction_info(txid, td)) + { + bei.block_cumulative_weight += td.weight; + } + else + { + MERROR_VER("Transaction is in the txpool, but metadata not found"); + bvc.m_verifivation_failed = true; + return false; + } } else if (m_db->get_pruned_tx_blob(txid, blob)) { |