diff options
| author | Pieter Wuille <[email protected]> | 2016-08-15 13:10:57 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-10-21 19:22:43 -0700 |
| commit | 51f278329d43398428d60f5986f8d29a2041d28d (patch) | |
| tree | bed01adf0a9ef92f90711dc08ca05934c582da6f /src/test/miner_tests.cpp | |
| parent | Bypass removeRecursive in removeForReorg (diff) | |
| download | discoin-51f278329d43398428d60f5986f8d29a2041d28d.tar.xz discoin-51f278329d43398428d60f5986f8d29a2041d28d.zip | |
Make removed and conflicted arguments optional to remove
Diffstat (limited to 'src/test/miner_tests.cpp')
| -rw-r--r-- | src/test/miner_tests.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp index d6d7b5716..a94979fd7 100644 --- a/src/test/miner_tests.cpp +++ b/src/test/miner_tests.cpp @@ -137,8 +137,7 @@ void TestPackageSelection(const CChainParams& chainparams, CScript scriptPubKey, // Test that packages above the min relay fee do get included, even if one // of the transactions is below the min relay fee // Remove the low fee transaction and replace with a higher fee transaction - std::list<CTransaction> dummy; - mempool.removeRecursive(tx, dummy); + mempool.removeRecursive(tx); tx.vout[0].nValue -= 2; // Now we should be just over the min relay fee hashLowFeeTx = tx.GetHash(); mempool.addUnchecked(hashLowFeeTx, entry.Fee(feeToUse+2).FromTx(tx)); |