diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-04-17 11:44:17 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-06-26 22:14:26 +0100 |
commit | 57ea90285cb403416b9b59d0b62393fb2b6998a0 (patch) | |
tree | 0c5e67ddd588cde5beb58af5d040b7f33379296e /src/wallet/wallet2.cpp | |
parent | rpc: rework to avoid repeated calculations in get_blocks.bin (diff) | |
download | monero-57ea90285cb403416b9b59d0b62393fb2b6998a0.tar.xz |
wallet: don't process miner tx if we're refreshing with no-coinbase
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 56a2a2adf..61b488624 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1582,7 +1582,9 @@ void wallet2::process_new_blockchain_entry(const cryptonote::block& b, const cry if(b.timestamp + 60*60*24 > m_account.get_createtime() && height >= m_refresh_from_block_height) { TIME_MEASURE_START(miner_tx_handle_time); - process_new_transaction(get_transaction_hash(b.miner_tx), b.miner_tx, o_indices.indices[txidx++].indices, height, b.timestamp, true, false, false); + if (m_refresh_type != RefreshNoCoinbase) + process_new_transaction(get_transaction_hash(b.miner_tx), b.miner_tx, o_indices.indices[txidx].indices, height, b.timestamp, true, false, false); + ++txidx; TIME_MEASURE_FINISH(miner_tx_handle_time); TIME_MEASURE_START(txs_handle_time); |