36
36
#include < shutdown.h>
37
37
#include < streams.h>
38
38
#include < test/util/net.h>
39
+ #include < test/util/txmempool.h>
39
40
#include < timedata.h>
40
41
#include < txdb.h>
41
42
#include < txmempool.h>
@@ -60,7 +61,6 @@ using node::ApplyArgsManOptions;
60
61
using node::BlockAssembler;
61
62
using node::CalculateCacheSizes;
62
63
using node::LoadChainstate;
63
- using node::NodeContext;
64
64
using node::RegenerateCommitments;
65
65
using node::VerifyLoadedChainstate;
66
66
@@ -162,19 +162,6 @@ BasicTestingSetup::~BasicTestingSetup()
162
162
gArgs .ClearArgs ();
163
163
}
164
164
165
- CTxMemPool::Options MemPoolOptionsForTest (const NodeContext& node)
166
- {
167
- CTxMemPool::Options mempool_opts{
168
- .estimator = node.fee_estimator .get (),
169
- // Default to always checking mempool regardless of
170
- // chainparams.DefaultConsistencyChecks for tests
171
- .check_ratio = 1 ,
172
- };
173
- const auto err{ApplyArgsManOptions (*node.args , ::Params (), mempool_opts)};
174
- Assert (!err);
175
- return mempool_opts;
176
- }
177
-
178
165
ChainTestingSetup::ChainTestingSetup (const std::string& chainName, const std::vector<const char *>& extra_args)
179
166
: BasicTestingSetup(chainName, extra_args)
180
167
{
@@ -438,17 +425,6 @@ std::vector<CTransactionRef> TestChain100Setup::PopulateMempool(FastRandomContex
438
425
return mempool_transactions;
439
426
}
440
427
441
- CTxMemPoolEntry TestMemPoolEntryHelper::FromTx (const CMutableTransaction& tx) const
442
- {
443
- return FromTx (MakeTransactionRef (tx));
444
- }
445
-
446
- CTxMemPoolEntry TestMemPoolEntryHelper::FromTx (const CTransactionRef& tx) const
447
- {
448
- return CTxMemPoolEntry (tx, nFee, nTime, nHeight,
449
- spendsCoinbase, sigOpCost, lp);
450
- }
451
-
452
428
/* *
453
429
* @returns a real block (0000000000013b8ab2cd513b0261a14096412195a72a0c4827d229dcc7e0f7af)
454
430
* with 9 txs.
0 commit comments