diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-30 19:02:33 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-01-30 19:02:33 +0000 |
commit | 444e22f01a1a2a00cb5352d3d4b2e2a4f498368f (patch) | |
tree | 0d5ed5dfb652c0c9fee0fc8cc609a73abf852c6d /src | |
parent | blockchain: fix m_sync_counter uninitialized variable use (diff) | |
download | monero-444e22f01a1a2a00cb5352d3d4b2e2a4f498368f.tar.xz |
blockchain: remove unused timer
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 62c33f481..4b7add9eb 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -2144,7 +2144,6 @@ bool Blockchain::check_tx_inputs(const transaction& tx, uint64_t* pmax_used_bloc // make sure that output being spent matches up correctly with the // signature spending it. - TIME_MEASURE_START(aa); if (!check_tx_input(in_to_key, tx_prefix_hash, tx.signatures[sig_index], pubkeys[sig_index], pmax_used_block_height)) { it->second[in_to_key.k_image] = false; |