diff options
| author | Alex Morcos <[email protected]> | 2017-01-13 16:53:21 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-01-17 13:21:35 -0500 |
| commit | ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3 (patch) | |
| tree | 2cb9752e8e999ca76984a3f169b5045bdbf31708 /src/test/blockencodings_tests.cpp | |
| parent | CBlockPolicyEstimator now uses hard coded minimum bucket feerate (diff) | |
| download | discoin-ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3.tar.xz discoin-ad82cb06cecf84c4f9e5647b404b7eb19f1e9bf3.zip | |
Remove unnecessary min fee argument in CTxMemPool constructor
Diffstat (limited to 'src/test/blockencodings_tests.cpp')
| -rw-r--r-- | src/test/blockencodings_tests.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/blockencodings_tests.cpp b/src/test/blockencodings_tests.cpp index e3876e969..09fab59ba 100644 --- a/src/test/blockencodings_tests.cpp +++ b/src/test/blockencodings_tests.cpp @@ -55,7 +55,7 @@ static CBlock BuildBlockTestCase() { BOOST_AUTO_TEST_CASE(SimpleRoundTripTest) { - CTxMemPool pool(CFeeRate(0)); + CTxMemPool pool; TestMemPoolEntryHelper entry; CBlock block(BuildBlockTestCase()); @@ -154,7 +154,7 @@ public: BOOST_AUTO_TEST_CASE(NonCoinbasePreforwardRTTest) { - CTxMemPool pool(CFeeRate(0)); + CTxMemPool pool; TestMemPoolEntryHelper entry; CBlock block(BuildBlockTestCase()); @@ -220,7 +220,7 @@ BOOST_AUTO_TEST_CASE(NonCoinbasePreforwardRTTest) BOOST_AUTO_TEST_CASE(SufficientPreforwardRTTest) { - CTxMemPool pool(CFeeRate(0)); + CTxMemPool pool; TestMemPoolEntryHelper entry; CBlock block(BuildBlockTestCase()); @@ -270,7 +270,7 @@ BOOST_AUTO_TEST_CASE(SufficientPreforwardRTTest) BOOST_AUTO_TEST_CASE(EmptyBlockRoundTripTest) { - CTxMemPool pool(CFeeRate(0)); + CTxMemPool pool; CMutableTransaction coinbase; coinbase.vin.resize(1); coinbase.vin[0].scriptSig.resize(10); |