Skip to content

Commit

Permalink
Merge pull request #64 from bleepster/PR-62_fix
Browse files Browse the repository at this point in the history
fix build error in tx_pool.cpp
  • Loading branch information
QuantumLeaper authored Oct 26, 2019
2 parents edc9435 + e14816a commit 2895ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cryptonote_core/tx_pool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ namespace cryptonote
MINFO("Pruning tx " << txid << " from txpool: weight: " << meta.weight << ", fee/byte: " << it->first.first);
m_blockchain.remove_txpool_tx(txid);
m_txpool_weight -= meta.weight;
remove_transaction_keyimages(tx, txid);
remove_transaction_keyimages(tx);
MINFO("Pruned tx " << txid << " from txpool: weight: " << meta.weight << ", fee/byte: " << it->first.first);
m_txs_by_fee_and_receive_time.erase(it--);
changed = true;
Expand Down

0 comments on commit 2895ac6

Please sign in to comment.