aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/blockchain.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-04-06 18:56:33 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-04-06 19:01:28 +0100
commit4cfb4dff3e8ae213cc87b2d0234a519d2e8674b7 (patch)
treeb7e65a34779d746398425602684fe52ae7b6dd31 /src/cryptonote_core/blockchain.h
parentMerge pull request #780 (diff)
downloadmonero-4cfb4dff3e8ae213cc87b2d0234a519d2e8674b7.tar.xz
blockchain: remove the tx validation result cache
As pointed out by smooth, a transaction's validity may change over time as the blockchain changes.
Diffstat (limited to 'src/cryptonote_core/blockchain.h')
-rw-r--r--src/cryptonote_core/blockchain.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h
index a62487d1e..21086d578 100644
--- a/src/cryptonote_core/blockchain.h
+++ b/src/cryptonote_core/blockchain.h
@@ -790,7 +790,6 @@ namespace cryptonote
// metadata containers
std::unordered_map<crypto::hash, std::unordered_map<crypto::key_image, std::vector<output_data_t>>> m_scan_table;
- std::unordered_map<crypto::hash, std::pair<bool, uint64_t>> m_check_tx_inputs_table;
std::unordered_map<crypto::hash, crypto::hash> m_blocks_longhash_table;
std::unordered_map<crypto::hash, std::unordered_map<crypto::key_image, bool>> m_check_txin_table;