13#include <boost/test/unit_test.hpp>
37 for (
int i = 0; i < 3; i++)
43 for (
int i = 0; i < 3; i++)
48 txChild[i].vin[0].prevout.n = i;
51 txChild[i].vout[0].nValue = 11000LL;
54 for (
int i = 0; i < 3; i++)
82 for (
int i = 0; i < 3; i++)
105 for (
int i = 0; i < 3; i++)
129 tx1.vout[0].nValue = 10 *
COIN;
137 tx2.vout[0].nValue = 10 *
COIN;
140 pool.TrimToSize(pool.DynamicMemoryUsage());
144 pool.TrimToSize(pool.DynamicMemoryUsage() * 3 / 4);
155 tx3.vout[0].nValue = 10 *
COIN;
158 pool.TrimToSize(pool.DynamicMemoryUsage() * 3 / 4);
173 tx4.vin[0].prevout.SetNull();
175 tx4.vin[1].prevout.SetNull();
179 tx4.vout[0].nValue = 10 *
COIN;
181 tx4.vout[1].nValue = 10 *
COIN;
187 tx5.vin[1].prevout.SetNull();
191 tx5.vout[0].nValue = 10 *
COIN;
193 tx5.vout[1].nValue = 10 *
COIN;
199 tx6.vin[1].prevout.SetNull();
203 tx6.vout[0].nValue = 10 *
COIN;
205 tx6.vout[1].nValue = 10 *
COIN;
215 tx7.vout[0].nValue = 10 *
COIN;
217 tx7.vout[1].nValue = 10 *
COIN;
229 pool.TrimToSize(pool.DynamicMemoryUsage() - 1);
236 if (!pool.exists(
tx5.GetHash()))
238 if (!pool.exists(
tx6.GetHash()))
253 std::vector<CTransactionRef> vtx;
258 pool.removeForBlock(vtx, 1);
283 tx.
vin.resize(inputs.size());
285 for (
size_t i = 0; i < inputs.size(); ++i) {
286 tx.
vin[i].prevout.hash = inputs[i]->GetHash();
401 tyi =
make_tx({v}, i > 0 ? std::vector<CTransactionRef>{*
ty[i - 1]} : std::vector<CTransactionRef>{});
458 size_t ancestors, descendants;
int64_t CAmount
Amount in satoshis (Can be negative)
static constexpr CAmount COIN
The amount of satoshis in one BTC.
TryAddToMempool(pool, CTxMemPoolEntry(tx, fee, 0, 1, 0, false, 4, lp))
#define Assert(val)
Identity function.
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
An outpoint - a combination of a transaction hash and an index n into its vout.
Serialized script, used inside transaction inputs and outputs.
The basic transaction that is broadcasted on the network and contained in blocks.
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
CFeeRate GetMinFee() const
The minimum fee to get into the mempool, which may itself not be enough for larger-sized transactions...
RecursiveMutex cs
This mutex needs to be locked when accessing mapTx or other members that are guarded by it.
void GetTransactionAncestry(const Txid &txid, size_t &ancestors, size_t &cluster_count, size_t *ancestorsize=nullptr, CAmount *ancestorfees=nullptr) const
Calculate the ancestor and cluster count for the given transaction.
static const int ROLLING_FEE_HALFLIFE
void resize(size_type new_size)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
@ REPLACED
Removed for replacement.
CTransactionRef make_tx(std::vector< CAmount > &&output_values, std::vector< CTransactionRef > &&inputs=std::vector< CTransactionRef >(), std::vector< uint32_t > &&input_indices=std::vector< uint32_t >())
static constexpr auto REMOVAL_REASON_DUMMY
BOOST_AUTO_TEST_CASE(MempoolRemoveTest)
#define BOOST_CHECK_EQUAL(v1, v2)
#define BOOST_CHECK(expr)
int64_t GetVirtualTransactionSize(int64_t nWeight, int64_t nSigOpCost, unsigned int bytes_per_sigop)
Compute the virtual transaction size (weight reinterpreted as bytes).
static constexpr unsigned int DEFAULT_INCREMENTAL_RELAY_FEE
Default for -incrementalrelayfee, which sets the minimum feerate increase for mempool limiting or rep...
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
static constexpr CAmount CENT
A mutable version of CTransaction.
std::vector< CTxOut > vout
CTxMemPoolEntry FromTx(const CMutableTransaction &tx) const
TestMemPoolEntryHelper & Fee(CAmount _fee)
Testing setup that configures a complete environment.
std::unique_ptr< CTxMemPool > mempool
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.