Bitcoin Core 28.99.0
P2P Digital Currency
miner_tests.cpp
Go to the documentation of this file.
1// Copyright (c) 2011-2022 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <addresstype.h>
6#include <coins.h>
7#include <common/system.h>
9#include <consensus/merkle.h>
10#include <consensus/tx_verify.h>
11#include <interfaces/mining.h>
12#include <node/miner.h>
13#include <policy/policy.h>
14#include <test/util/random.h>
15#include <test/util/txmempool.h>
16#include <txmempool.h>
17#include <uint256.h>
18#include <util/check.h>
19#include <util/feefrac.h>
20#include <util/strencodings.h>
21#include <util/time.h>
22#include <util/translation.h>
23#include <validation.h>
24#include <versionbits.h>
25
27
28#include <memory>
29#include <vector>
30
31#include <boost/test/unit_test.hpp>
32
33using namespace util::hex_literals;
37
38namespace miner_tests {
40 void TestPackageSelection(const CScript& scriptPubKey, const std::vector<CTransactionRef>& txFirst) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
41 void TestBasicMining(const CScript& scriptPubKey, const std::vector<CTransactionRef>& txFirst, int baseheight) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
42 void TestPrioritisedMining(const CScript& scriptPubKey, const std::vector<CTransactionRef>& txFirst) EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
44 {
45 CCoinsViewMemPool view_mempool{&m_node.chainman->ActiveChainstate().CoinsTip(), tx_mempool};
46 CBlockIndex* tip{m_node.chainman->ActiveChain().Tip()};
47 const std::optional<LockPoints> lock_points{CalculateLockPointsAtTip(tip, view_mempool, tx)};
48 return lock_points.has_value() && CheckSequenceLocksAtTip(tip, *lock_points);
49 }
51 {
52 // Delete the previous mempool to ensure with valgrind that the old
53 // pointer is not accessed, when the new one should be accessed
54 // instead.
55 m_node.mempool.reset();
56 bilingual_str error;
57 m_node.mempool = std::make_unique<CTxMemPool>(MemPoolOptionsForTest(m_node), error);
58 Assert(error.empty());
59 return *m_node.mempool;
60 }
61 std::unique_ptr<Mining> MakeMining()
62 {
64 }
65};
66} // namespace miner_tests
67
68BOOST_FIXTURE_TEST_SUITE(miner_tests, MinerTestingSetup)
69
71
72constexpr static struct {
73 unsigned char extranonce;
74 unsigned int nonce;
75} BLOCKINFO[]{{8, 582909131}, {0, 971462344}, {2, 1169481553}, {6, 66147495}, {7, 427785981}, {8, 80538907},
76 {8, 207348013}, {2, 1951240923}, {4, 215054351}, {1, 491520534}, {8, 1282281282}, {4, 639565734},
77 {3, 248274685}, {8, 1160085976}, {6, 396349768}, {5, 393780549}, {5, 1096899528}, {4, 965381630},
78 {0, 728758712}, {5, 318638310}, {3, 164591898}, {2, 274234550}, {2, 254411237}, {7, 561761812},
79 {2, 268342573}, {0, 402816691}, {1, 221006382}, {6, 538872455}, {7, 393315655}, {4, 814555937},
80 {7, 504879194}, {6, 467769648}, {3, 925972193}, {2, 200581872}, {3, 168915404}, {8, 430446262},
81 {5, 773507406}, {3, 1195366164}, {0, 433361157}, {3, 297051771}, {0, 558856551}, {2, 501614039},
82 {3, 528488272}, {2, 473587734}, {8, 230125274}, {2, 494084400}, {4, 357314010}, {8, 60361686},
83 {7, 640624687}, {3, 480441695}, {8, 1424447925}, {4, 752745419}, {1, 288532283}, {6, 669170574},
84 {5, 1900907591}, {3, 555326037}, {3, 1121014051}, {0, 545835650}, {8, 189196651}, {5, 252371575},
85 {0, 199163095}, {6, 558895874}, {6, 1656839784}, {6, 815175452}, {6, 718677851}, {5, 544000334},
86 {0, 340113484}, {6, 850744437}, {4, 496721063}, {8, 524715182}, {6, 574361898}, {6, 1642305743},
87 {6, 355110149}, {5, 1647379658}, {8, 1103005356}, {7, 556460625}, {3, 1139533992}, {5, 304736030},
88 {2, 361539446}, {2, 143720360}, {6, 201939025}, {7, 423141476}, {4, 574633709}, {3, 1412254823},
89 {4, 873254135}, {0, 341817335}, {6, 53501687}, {3, 179755410}, {5, 172209688}, {8, 516810279},
90 {4, 1228391489}, {8, 325372589}, {6, 550367589}, {0, 876291812}, {7, 412454120}, {7, 717202854},
91 {2, 222677843}, {6, 251778867}, {7, 842004420}, {7, 194762829}, {4, 96668841}, {1, 925485796},
92 {0, 792342903}, {6, 678455063}, {6, 773251385}, {5, 186617471}, {6, 883189502}, {7, 396077336},
93 {8, 254702874}, {0, 455592851}};
94
95static std::unique_ptr<CBlockIndex> CreateBlockIndex(int nHeight, CBlockIndex* active_chain_tip) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
96{
97 auto index{std::make_unique<CBlockIndex>()};
98 index->nHeight = nHeight;
99 index->pprev = active_chain_tip;
100 return index;
101}
102
103// Test suite for ancestor feerate transaction selection.
104// Implemented as an additional function, rather than a separate test case,
105// to allow reusing the blockchain created in CreateNewBlock_validity.
106void MinerTestingSetup::TestPackageSelection(const CScript& scriptPubKey, const std::vector<CTransactionRef>& txFirst)
107{
108 CTxMemPool& tx_mempool{MakeMempool()};
109 auto mining{MakeMining()};
110 BlockAssembler::Options options;
111 options.coinbase_output_script = scriptPubKey;
112
113 LOCK(tx_mempool.cs);
114 // Test the ancestor feerate transaction selection.
116
117 // Test that a medium fee transaction will be selected after a higher fee
118 // rate package with a low fee rate parent.
120 tx.vin.resize(1);
121 tx.vin[0].scriptSig = CScript() << OP_1;
122 tx.vin[0].prevout.hash = txFirst[0]->GetHash();
123 tx.vin[0].prevout.n = 0;
124 tx.vout.resize(1);
125 tx.vout[0].nValue = 5000000000LL - 1000;
126 // This tx has a low fee: 1000 satoshis
127 Txid hashParentTx = tx.GetHash(); // save this txid for later use
128 const auto parent_tx{entry.Fee(1000).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx)};
129 AddToMempool(tx_mempool, parent_tx);
130
131 // This tx has a medium fee: 10000 satoshis
132 tx.vin[0].prevout.hash = txFirst[1]->GetHash();
133 tx.vout[0].nValue = 5000000000LL - 10000;
134 Txid hashMediumFeeTx = tx.GetHash();
135 const auto medium_fee_tx{entry.Fee(10000).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx)};
136 AddToMempool(tx_mempool, medium_fee_tx);
137
138 // This tx has a high fee, but depends on the first transaction
139 tx.vin[0].prevout.hash = hashParentTx;
140 tx.vout[0].nValue = 5000000000LL - 1000 - 50000; // 50k satoshi fee
141 Txid hashHighFeeTx = tx.GetHash();
142 const auto high_fee_tx{entry.Fee(50000).Time(Now<NodeSeconds>()).SpendsCoinbase(false).FromTx(tx)};
143 AddToMempool(tx_mempool, high_fee_tx);
144
145 std::unique_ptr<BlockTemplate> block_template = mining->createNewBlock(options);
146 BOOST_REQUIRE(block_template);
147 CBlock block{block_template->getBlock()};
148 BOOST_REQUIRE_EQUAL(block.vtx.size(), 4U);
149 BOOST_CHECK(block.vtx[1]->GetHash() == hashParentTx);
150 BOOST_CHECK(block.vtx[2]->GetHash() == hashHighFeeTx);
151 BOOST_CHECK(block.vtx[3]->GetHash() == hashMediumFeeTx);
152
153 // Test the inclusion of package feerates in the block template and ensure they are sequential.
154 const auto block_package_feerates = BlockAssembler{m_node.chainman->ActiveChainstate(), &tx_mempool, options}.CreateNewBlock()->m_package_feerates;
155 BOOST_CHECK(block_package_feerates.size() == 2);
156
157 // parent_tx and high_fee_tx are added to the block as a package.
158 const auto combined_txs_fee = parent_tx.GetFee() + high_fee_tx.GetFee();
159 const auto combined_txs_size = parent_tx.GetTxSize() + high_fee_tx.GetTxSize();
160 FeeFrac package_feefrac{combined_txs_fee, combined_txs_size};
161 // The package should be added first.
162 BOOST_CHECK(block_package_feerates[0] == package_feefrac);
163
164 // The medium_fee_tx should be added next.
165 FeeFrac medium_tx_feefrac{medium_fee_tx.GetFee(), medium_fee_tx.GetTxSize()};
166 BOOST_CHECK(block_package_feerates[1] == medium_tx_feefrac);
167
168 // Test that a package below the block min tx fee doesn't get included
169 tx.vin[0].prevout.hash = hashHighFeeTx;
170 tx.vout[0].nValue = 5000000000LL - 1000 - 50000; // 0 fee
171 Txid hashFreeTx = tx.GetHash();
172 AddToMempool(tx_mempool, entry.Fee(0).FromTx(tx));
173 size_t freeTxSize = ::GetSerializeSize(TX_WITH_WITNESS(tx));
174
175 // Calculate a fee on child transaction that will put the package just
176 // below the block min tx fee (assuming 1 child tx of the same size).
177 CAmount feeToUse = blockMinFeeRate.GetFee(2*freeTxSize) - 1;
178
179 tx.vin[0].prevout.hash = hashFreeTx;
180 tx.vout[0].nValue = 5000000000LL - 1000 - 50000 - feeToUse;
181 Txid hashLowFeeTx = tx.GetHash();
182 AddToMempool(tx_mempool, entry.Fee(feeToUse).FromTx(tx));
183 block_template = mining->createNewBlock(options);
184 BOOST_REQUIRE(block_template);
185 block = block_template->getBlock();
186 // Verify that the free tx and the low fee tx didn't get selected
187 for (size_t i=0; i<block.vtx.size(); ++i) {
188 BOOST_CHECK(block.vtx[i]->GetHash() != hashFreeTx);
189 BOOST_CHECK(block.vtx[i]->GetHash() != hashLowFeeTx);
190 }
191
192 // Test that packages above the min relay fee do get included, even if one
193 // of the transactions is below the min relay fee
194 // Remove the low fee transaction and replace with a higher fee transaction
195 tx_mempool.removeRecursive(CTransaction(tx), MemPoolRemovalReason::REPLACED);
196 tx.vout[0].nValue -= 2; // Now we should be just over the min relay fee
197 hashLowFeeTx = tx.GetHash();
198 AddToMempool(tx_mempool, entry.Fee(feeToUse + 2).FromTx(tx));
199 block_template = mining->createNewBlock(options);
200 BOOST_REQUIRE(block_template);
201 block = block_template->getBlock();
202 BOOST_REQUIRE_EQUAL(block.vtx.size(), 6U);
203 BOOST_CHECK(block.vtx[4]->GetHash() == hashFreeTx);
204 BOOST_CHECK(block.vtx[5]->GetHash() == hashLowFeeTx);
205
206 // Test that transaction selection properly updates ancestor fee
207 // calculations as ancestor transactions get included in a block.
208 // Add a 0-fee transaction that has 2 outputs.
209 tx.vin[0].prevout.hash = txFirst[2]->GetHash();
210 tx.vout.resize(2);
211 tx.vout[0].nValue = 5000000000LL - 100000000;
212 tx.vout[1].nValue = 100000000; // 1BTC output
213 Txid hashFreeTx2 = tx.GetHash();
214 AddToMempool(tx_mempool, entry.Fee(0).SpendsCoinbase(true).FromTx(tx));
215
216 // This tx can't be mined by itself
217 tx.vin[0].prevout.hash = hashFreeTx2;
218 tx.vout.resize(1);
219 feeToUse = blockMinFeeRate.GetFee(freeTxSize);
220 tx.vout[0].nValue = 5000000000LL - 100000000 - feeToUse;
221 Txid hashLowFeeTx2 = tx.GetHash();
222 AddToMempool(tx_mempool, entry.Fee(feeToUse).SpendsCoinbase(false).FromTx(tx));
223 block_template = mining->createNewBlock(options);
224 BOOST_REQUIRE(block_template);
225 block = block_template->getBlock();
226
227 // Verify that this tx isn't selected.
228 for (size_t i=0; i<block.vtx.size(); ++i) {
229 BOOST_CHECK(block.vtx[i]->GetHash() != hashFreeTx2);
230 BOOST_CHECK(block.vtx[i]->GetHash() != hashLowFeeTx2);
231 }
232
233 // This tx will be mineable, and should cause hashLowFeeTx2 to be selected
234 // as well.
235 tx.vin[0].prevout.n = 1;
236 tx.vout[0].nValue = 100000000 - 10000; // 10k satoshi fee
237 AddToMempool(tx_mempool, entry.Fee(10000).FromTx(tx));
238 block_template = mining->createNewBlock(options);
239 BOOST_REQUIRE(block_template);
240 block = block_template->getBlock();
241 BOOST_REQUIRE_EQUAL(block.vtx.size(), 9U);
242 BOOST_CHECK(block.vtx[8]->GetHash() == hashLowFeeTx2);
243}
244
245void MinerTestingSetup::TestBasicMining(const CScript& scriptPubKey, const std::vector<CTransactionRef>& txFirst, int baseheight)
246{
247 Txid hash;
250 entry.nFee = 11;
251 entry.nHeight = 11;
252
253 const CAmount BLOCKSUBSIDY = 50 * COIN;
254 const CAmount LOWFEE = CENT;
255 const CAmount HIGHFEE = COIN;
256 const CAmount HIGHERFEE = 4 * COIN;
257
258 auto mining{MakeMining()};
259 BOOST_REQUIRE(mining);
260
261 BlockAssembler::Options options;
262 options.coinbase_output_script = scriptPubKey;
263
264 {
265 CTxMemPool& tx_mempool{MakeMempool()};
266 LOCK(tx_mempool.cs);
267
268 // Just to make sure we can still make simple blocks
269 auto block_template{mining->createNewBlock(options)};
270 BOOST_REQUIRE(block_template);
271 CBlock block{block_template->getBlock()};
272
273 // block sigops > limit: 1000 CHECKMULTISIG + 1
274 tx.vin.resize(1);
275 // NOTE: OP_NOP is used to force 20 SigOps for the CHECKMULTISIG
276 tx.vin[0].scriptSig = CScript() << OP_0 << OP_0 << OP_0 << OP_NOP << OP_CHECKMULTISIG << OP_1;
277 tx.vin[0].prevout.hash = txFirst[0]->GetHash();
278 tx.vin[0].prevout.n = 0;
279 tx.vout.resize(1);
280 tx.vout[0].nValue = BLOCKSUBSIDY;
281 for (unsigned int i = 0; i < 1001; ++i) {
282 tx.vout[0].nValue -= LOWFEE;
283 hash = tx.GetHash();
284 bool spendsCoinbase = i == 0; // only first tx spends coinbase
285 // If we don't set the # of sig ops in the CTxMemPoolEntry, template creation fails
286 AddToMempool(tx_mempool, entry.Fee(LOWFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(spendsCoinbase).FromTx(tx));
287 tx.vin[0].prevout.hash = hash;
288 }
289
290 BOOST_CHECK_EXCEPTION(mining->createNewBlock(options), std::runtime_error, HasReason("bad-blk-sigops"));
291 }
292
293 {
294 CTxMemPool& tx_mempool{MakeMempool()};
295 LOCK(tx_mempool.cs);
296
297 tx.vin[0].prevout.hash = txFirst[0]->GetHash();
298 tx.vout[0].nValue = BLOCKSUBSIDY;
299 for (unsigned int i = 0; i < 1001; ++i) {
300 tx.vout[0].nValue -= LOWFEE;
301 hash = tx.GetHash();
302 bool spendsCoinbase = i == 0; // only first tx spends coinbase
303 // If we do set the # of sig ops in the CTxMemPoolEntry, template creation passes
304 AddToMempool(tx_mempool, entry.Fee(LOWFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(spendsCoinbase).SigOpsCost(80).FromTx(tx));
305 tx.vin[0].prevout.hash = hash;
306 }
307 BOOST_REQUIRE(mining->createNewBlock(options));
308 }
309
310 {
311 CTxMemPool& tx_mempool{MakeMempool()};
312 LOCK(tx_mempool.cs);
313
314 // block size > limit
315 tx.vin[0].scriptSig = CScript();
316 // 18 * (520char + DROP) + OP_1 = 9433 bytes
317 std::vector<unsigned char> vchData(520);
318 for (unsigned int i = 0; i < 18; ++i) {
319 tx.vin[0].scriptSig << vchData << OP_DROP;
320 }
321 tx.vin[0].scriptSig << OP_1;
322 tx.vin[0].prevout.hash = txFirst[0]->GetHash();
323 tx.vout[0].nValue = BLOCKSUBSIDY;
324 for (unsigned int i = 0; i < 128; ++i) {
325 tx.vout[0].nValue -= LOWFEE;
326 hash = tx.GetHash();
327 bool spendsCoinbase = i == 0; // only first tx spends coinbase
328 AddToMempool(tx_mempool, entry.Fee(LOWFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(spendsCoinbase).FromTx(tx));
329 tx.vin[0].prevout.hash = hash;
330 }
331 BOOST_REQUIRE(mining->createNewBlock(options));
332 }
333
334 {
335 CTxMemPool& tx_mempool{MakeMempool()};
336 LOCK(tx_mempool.cs);
337
338 // orphan in tx_mempool, template creation fails
339 hash = tx.GetHash();
340 AddToMempool(tx_mempool, entry.Fee(LOWFEE).Time(Now<NodeSeconds>()).FromTx(tx));
341 BOOST_CHECK_EXCEPTION(mining->createNewBlock(options), std::runtime_error, HasReason("bad-txns-inputs-missingorspent"));
342 }
343
344 {
345 CTxMemPool& tx_mempool{MakeMempool()};
346 LOCK(tx_mempool.cs);
347
348 // child with higher feerate than parent
349 tx.vin[0].scriptSig = CScript() << OP_1;
350 tx.vin[0].prevout.hash = txFirst[1]->GetHash();
351 tx.vout[0].nValue = BLOCKSUBSIDY - HIGHFEE;
352 hash = tx.GetHash();
353 AddToMempool(tx_mempool, entry.Fee(HIGHFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
354 tx.vin[0].prevout.hash = hash;
355 tx.vin.resize(2);
356 tx.vin[1].scriptSig = CScript() << OP_1;
357 tx.vin[1].prevout.hash = txFirst[0]->GetHash();
358 tx.vin[1].prevout.n = 0;
359 tx.vout[0].nValue = tx.vout[0].nValue + BLOCKSUBSIDY - HIGHERFEE; // First txn output + fresh coinbase - new txn fee
360 hash = tx.GetHash();
361 AddToMempool(tx_mempool, entry.Fee(HIGHERFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
362 BOOST_REQUIRE(mining->createNewBlock(options));
363 }
364
365 {
366 CTxMemPool& tx_mempool{MakeMempool()};
367 LOCK(tx_mempool.cs);
368
369 // coinbase in tx_mempool, template creation fails
370 tx.vin.resize(1);
371 tx.vin[0].prevout.SetNull();
372 tx.vin[0].scriptSig = CScript() << OP_0 << OP_1;
373 tx.vout[0].nValue = 0;
374 hash = tx.GetHash();
375 // give it a fee so it'll get mined
376 AddToMempool(tx_mempool, entry.Fee(LOWFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(false).FromTx(tx));
377 // Should throw bad-cb-multiple
378 BOOST_CHECK_EXCEPTION(mining->createNewBlock(options), std::runtime_error, HasReason("bad-cb-multiple"));
379 }
380
381 {
382 CTxMemPool& tx_mempool{MakeMempool()};
383 LOCK(tx_mempool.cs);
384
385 // double spend txn pair in tx_mempool, template creation fails
386 tx.vin[0].prevout.hash = txFirst[0]->GetHash();
387 tx.vin[0].scriptSig = CScript() << OP_1;
388 tx.vout[0].nValue = BLOCKSUBSIDY - HIGHFEE;
389 tx.vout[0].scriptPubKey = CScript() << OP_1;
390 hash = tx.GetHash();
391 AddToMempool(tx_mempool, entry.Fee(HIGHFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
392 tx.vout[0].scriptPubKey = CScript() << OP_2;
393 hash = tx.GetHash();
394 AddToMempool(tx_mempool, entry.Fee(HIGHFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
395 BOOST_CHECK_EXCEPTION(mining->createNewBlock(options), std::runtime_error, HasReason("bad-txns-inputs-missingorspent"));
396 }
397
398 {
399 CTxMemPool& tx_mempool{MakeMempool()};
400 LOCK(tx_mempool.cs);
401
402 // subsidy changing
403 int nHeight = m_node.chainman->ActiveChain().Height();
404 // Create an actual 209999-long block chain (without valid blocks).
405 while (m_node.chainman->ActiveChain().Tip()->nHeight < 209999) {
406 CBlockIndex* prev = m_node.chainman->ActiveChain().Tip();
407 CBlockIndex* next = new CBlockIndex();
408 next->phashBlock = new uint256(m_rng.rand256());
409 m_node.chainman->ActiveChainstate().CoinsTip().SetBestBlock(next->GetBlockHash());
410 next->pprev = prev;
411 next->nHeight = prev->nHeight + 1;
412 next->BuildSkip();
413 m_node.chainman->ActiveChain().SetTip(*next);
414 }
415 BOOST_REQUIRE(mining->createNewBlock(options));
416 // Extend to a 210000-long block chain.
417 while (m_node.chainman->ActiveChain().Tip()->nHeight < 210000) {
418 CBlockIndex* prev = m_node.chainman->ActiveChain().Tip();
419 CBlockIndex* next = new CBlockIndex();
420 next->phashBlock = new uint256(m_rng.rand256());
421 m_node.chainman->ActiveChainstate().CoinsTip().SetBestBlock(next->GetBlockHash());
422 next->pprev = prev;
423 next->nHeight = prev->nHeight + 1;
424 next->BuildSkip();
425 m_node.chainman->ActiveChain().SetTip(*next);
426 }
427 BOOST_REQUIRE(mining->createNewBlock(options));
428
429 // invalid p2sh txn in tx_mempool, template creation fails
430 tx.vin[0].prevout.hash = txFirst[0]->GetHash();
431 tx.vin[0].prevout.n = 0;
432 tx.vin[0].scriptSig = CScript() << OP_1;
433 tx.vout[0].nValue = BLOCKSUBSIDY - LOWFEE;
434 CScript script = CScript() << OP_0;
435 tx.vout[0].scriptPubKey = GetScriptForDestination(ScriptHash(script));
436 hash = tx.GetHash();
437 AddToMempool(tx_mempool, entry.Fee(LOWFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
438 tx.vin[0].prevout.hash = hash;
439 tx.vin[0].scriptSig = CScript() << std::vector<unsigned char>(script.begin(), script.end());
440 tx.vout[0].nValue -= LOWFEE;
441 hash = tx.GetHash();
442 AddToMempool(tx_mempool, entry.Fee(LOWFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(false).FromTx(tx));
443 BOOST_CHECK_EXCEPTION(mining->createNewBlock(options), std::runtime_error, HasReason("mandatory-script-verify-flag-failed"));
444
445 // Delete the dummy blocks again.
446 while (m_node.chainman->ActiveChain().Tip()->nHeight > nHeight) {
447 CBlockIndex* del = m_node.chainman->ActiveChain().Tip();
448 m_node.chainman->ActiveChain().SetTip(*Assert(del->pprev));
449 m_node.chainman->ActiveChainstate().CoinsTip().SetBestBlock(del->pprev->GetBlockHash());
450 delete del->phashBlock;
451 delete del;
452 }
453 }
454
455 CTxMemPool& tx_mempool{MakeMempool()};
456 LOCK(tx_mempool.cs);
457
458 // non-final txs in mempool
459 SetMockTime(m_node.chainman->ActiveChain().Tip()->GetMedianTimePast() + 1);
461 // height map
462 std::vector<int> prevheights;
463
464 // relative height locked
465 tx.version = 2;
466 tx.vin.resize(1);
467 prevheights.resize(1);
468 tx.vin[0].prevout.hash = txFirst[0]->GetHash(); // only 1 transaction
469 tx.vin[0].prevout.n = 0;
470 tx.vin[0].scriptSig = CScript() << OP_1;
471 tx.vin[0].nSequence = m_node.chainman->ActiveChain().Tip()->nHeight + 1; // txFirst[0] is the 2nd block
472 prevheights[0] = baseheight + 1;
473 tx.vout.resize(1);
474 tx.vout[0].nValue = BLOCKSUBSIDY-HIGHFEE;
475 tx.vout[0].scriptPubKey = CScript() << OP_1;
476 tx.nLockTime = 0;
477 hash = tx.GetHash();
478 AddToMempool(tx_mempool, entry.Fee(HIGHFEE).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
479 BOOST_CHECK(CheckFinalTxAtTip(*Assert(m_node.chainman->ActiveChain().Tip()), CTransaction{tx})); // Locktime passes
480 BOOST_CHECK(!TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks fail
481
482 {
483 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip();
484 BOOST_CHECK(SequenceLocks(CTransaction(tx), flags, prevheights, *CreateBlockIndex(active_chain_tip->nHeight + 2, active_chain_tip))); // Sequence locks pass on 2nd block
485 }
486
487 // relative time locked
488 tx.vin[0].prevout.hash = txFirst[1]->GetHash();
489 tx.vin[0].nSequence = CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG | (((m_node.chainman->ActiveChain().Tip()->GetMedianTimePast()+1-m_node.chainman->ActiveChain()[1]->GetMedianTimePast()) >> CTxIn::SEQUENCE_LOCKTIME_GRANULARITY) + 1); // txFirst[1] is the 3rd block
490 prevheights[0] = baseheight + 2;
491 hash = tx.GetHash();
492 AddToMempool(tx_mempool, entry.Time(Now<NodeSeconds>()).FromTx(tx));
493 BOOST_CHECK(CheckFinalTxAtTip(*Assert(m_node.chainman->ActiveChain().Tip()), CTransaction{tx})); // Locktime passes
494 BOOST_CHECK(!TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks fail
495
496 const int SEQUENCE_LOCK_TIME = 512; // Sequence locks pass 512 seconds later
497 for (int i = 0; i < CBlockIndex::nMedianTimeSpan; ++i)
498 m_node.chainman->ActiveChain().Tip()->GetAncestor(m_node.chainman->ActiveChain().Tip()->nHeight - i)->nTime += SEQUENCE_LOCK_TIME; // Trick the MedianTimePast
499 {
500 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip();
501 BOOST_CHECK(SequenceLocks(CTransaction(tx), flags, prevheights, *CreateBlockIndex(active_chain_tip->nHeight + 1, active_chain_tip)));
502 }
503
504 for (int i = 0; i < CBlockIndex::nMedianTimeSpan; ++i) {
505 CBlockIndex* ancestor{Assert(m_node.chainman->ActiveChain().Tip()->GetAncestor(m_node.chainman->ActiveChain().Tip()->nHeight - i))};
506 ancestor->nTime -= SEQUENCE_LOCK_TIME; // undo tricked MTP
507 }
508
509 // absolute height locked
510 tx.vin[0].prevout.hash = txFirst[2]->GetHash();
511 tx.vin[0].nSequence = CTxIn::MAX_SEQUENCE_NONFINAL;
512 prevheights[0] = baseheight + 3;
513 tx.nLockTime = m_node.chainman->ActiveChain().Tip()->nHeight + 1;
514 hash = tx.GetHash();
515 AddToMempool(tx_mempool, entry.Time(Now<NodeSeconds>()).FromTx(tx));
516 BOOST_CHECK(!CheckFinalTxAtTip(*Assert(m_node.chainman->ActiveChain().Tip()), CTransaction{tx})); // Locktime fails
517 BOOST_CHECK(TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks pass
518 BOOST_CHECK(IsFinalTx(CTransaction(tx), m_node.chainman->ActiveChain().Tip()->nHeight + 2, m_node.chainman->ActiveChain().Tip()->GetMedianTimePast())); // Locktime passes on 2nd block
519
520 // absolute time locked
521 tx.vin[0].prevout.hash = txFirst[3]->GetHash();
522 tx.nLockTime = m_node.chainman->ActiveChain().Tip()->GetMedianTimePast();
523 prevheights.resize(1);
524 prevheights[0] = baseheight + 4;
525 hash = tx.GetHash();
526 AddToMempool(tx_mempool, entry.Time(Now<NodeSeconds>()).FromTx(tx));
527 BOOST_CHECK(!CheckFinalTxAtTip(*Assert(m_node.chainman->ActiveChain().Tip()), CTransaction{tx})); // Locktime fails
528 BOOST_CHECK(TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks pass
529 BOOST_CHECK(IsFinalTx(CTransaction(tx), m_node.chainman->ActiveChain().Tip()->nHeight + 2, m_node.chainman->ActiveChain().Tip()->GetMedianTimePast() + 1)); // Locktime passes 1 second later
530
531 // mempool-dependent transactions (not added)
532 tx.vin[0].prevout.hash = hash;
533 prevheights[0] = m_node.chainman->ActiveChain().Tip()->nHeight + 1;
534 tx.nLockTime = 0;
535 tx.vin[0].nSequence = 0;
536 BOOST_CHECK(CheckFinalTxAtTip(*Assert(m_node.chainman->ActiveChain().Tip()), CTransaction{tx})); // Locktime passes
537 BOOST_CHECK(TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks pass
538 tx.vin[0].nSequence = 1;
539 BOOST_CHECK(!TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks fail
540 tx.vin[0].nSequence = CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG;
541 BOOST_CHECK(TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks pass
542 tx.vin[0].nSequence = CTxIn::SEQUENCE_LOCKTIME_TYPE_FLAG | 1;
543 BOOST_CHECK(!TestSequenceLocks(CTransaction{tx}, tx_mempool)); // Sequence locks fail
544
545 auto block_template = mining->createNewBlock(options);
546 BOOST_REQUIRE(block_template);
547
548 // None of the of the absolute height/time locked tx should have made
549 // it into the template because we still check IsFinalTx in CreateNewBlock,
550 // but relative locked txs will if inconsistently added to mempool.
551 // For now these will still generate a valid template until BIP68 soft fork
552 CBlock block{block_template->getBlock()};
553 BOOST_CHECK_EQUAL(block.vtx.size(), 3U);
554 // However if we advance height by 1 and time by SEQUENCE_LOCK_TIME, all of them should be mined
555 for (int i = 0; i < CBlockIndex::nMedianTimeSpan; ++i) {
556 CBlockIndex* ancestor{Assert(m_node.chainman->ActiveChain().Tip()->GetAncestor(m_node.chainman->ActiveChain().Tip()->nHeight - i))};
557 ancestor->nTime += SEQUENCE_LOCK_TIME; // Trick the MedianTimePast
558 }
559 m_node.chainman->ActiveChain().Tip()->nHeight++;
560 SetMockTime(m_node.chainman->ActiveChain().Tip()->GetMedianTimePast() + 1);
561
562 block_template = mining->createNewBlock(options);
563 BOOST_REQUIRE(block_template);
564 block = block_template->getBlock();
565 BOOST_CHECK_EQUAL(block.vtx.size(), 5U);
566}
567
568void MinerTestingSetup::TestPrioritisedMining(const CScript& scriptPubKey, const std::vector<CTransactionRef>& txFirst)
569{
570 auto mining{MakeMining()};
571 BOOST_REQUIRE(mining);
572
573 BlockAssembler::Options options;
574 options.coinbase_output_script = scriptPubKey;
575
576 CTxMemPool& tx_mempool{MakeMempool()};
577 LOCK(tx_mempool.cs);
578
580
581 // Test that a tx below min fee but prioritised is included
583 tx.vin.resize(1);
584 tx.vin[0].prevout.hash = txFirst[0]->GetHash();
585 tx.vin[0].prevout.n = 0;
586 tx.vin[0].scriptSig = CScript() << OP_1;
587 tx.vout.resize(1);
588 tx.vout[0].nValue = 5000000000LL; // 0 fee
589 uint256 hashFreePrioritisedTx = tx.GetHash();
590 AddToMempool(tx_mempool, entry.Fee(0).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
591 tx_mempool.PrioritiseTransaction(hashFreePrioritisedTx, 5 * COIN);
592
593 tx.vin[0].prevout.hash = txFirst[1]->GetHash();
594 tx.vin[0].prevout.n = 0;
595 tx.vout[0].nValue = 5000000000LL - 1000;
596 // This tx has a low fee: 1000 satoshis
597 Txid hashParentTx = tx.GetHash(); // save this txid for later use
598 AddToMempool(tx_mempool, entry.Fee(1000).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
599
600 // This tx has a medium fee: 10000 satoshis
601 tx.vin[0].prevout.hash = txFirst[2]->GetHash();
602 tx.vout[0].nValue = 5000000000LL - 10000;
603 Txid hashMediumFeeTx = tx.GetHash();
604 AddToMempool(tx_mempool, entry.Fee(10000).Time(Now<NodeSeconds>()).SpendsCoinbase(true).FromTx(tx));
605 tx_mempool.PrioritiseTransaction(hashMediumFeeTx, -5 * COIN);
606
607 // This tx also has a low fee, but is prioritised
608 tx.vin[0].prevout.hash = hashParentTx;
609 tx.vout[0].nValue = 5000000000LL - 1000 - 1000; // 1000 satoshi fee
610 Txid hashPrioritsedChild = tx.GetHash();
611 AddToMempool(tx_mempool, entry.Fee(1000).Time(Now<NodeSeconds>()).SpendsCoinbase(false).FromTx(tx));
612 tx_mempool.PrioritiseTransaction(hashPrioritsedChild, 2 * COIN);
613
614 // Test that transaction selection properly updates ancestor fee calculations as prioritised
615 // parents get included in a block. Create a transaction with two prioritised ancestors, each
616 // included by itself: FreeParent <- FreeChild <- FreeGrandchild.
617 // When FreeParent is added, a modified entry will be created for FreeChild + FreeGrandchild
618 // FreeParent's prioritisation should not be included in that entry.
619 // When FreeChild is included, FreeChild's prioritisation should also not be included.
620 tx.vin[0].prevout.hash = txFirst[3]->GetHash();
621 tx.vout[0].nValue = 5000000000LL; // 0 fee
622 Txid hashFreeParent = tx.GetHash();
623 AddToMempool(tx_mempool, entry.Fee(0).SpendsCoinbase(true).FromTx(tx));
624 tx_mempool.PrioritiseTransaction(hashFreeParent, 10 * COIN);
625
626 tx.vin[0].prevout.hash = hashFreeParent;
627 tx.vout[0].nValue = 5000000000LL; // 0 fee
628 Txid hashFreeChild = tx.GetHash();
629 AddToMempool(tx_mempool, entry.Fee(0).SpendsCoinbase(false).FromTx(tx));
630 tx_mempool.PrioritiseTransaction(hashFreeChild, 1 * COIN);
631
632 tx.vin[0].prevout.hash = hashFreeChild;
633 tx.vout[0].nValue = 5000000000LL; // 0 fee
634 Txid hashFreeGrandchild = tx.GetHash();
635 AddToMempool(tx_mempool, entry.Fee(0).SpendsCoinbase(false).FromTx(tx));
636
637 auto block_template = mining->createNewBlock(options);
638 BOOST_REQUIRE(block_template);
639 CBlock block{block_template->getBlock()};
640 BOOST_REQUIRE_EQUAL(block.vtx.size(), 6U);
641 BOOST_CHECK(block.vtx[1]->GetHash() == hashFreeParent);
642 BOOST_CHECK(block.vtx[2]->GetHash() == hashFreePrioritisedTx);
643 BOOST_CHECK(block.vtx[3]->GetHash() == hashParentTx);
644 BOOST_CHECK(block.vtx[4]->GetHash() == hashPrioritsedChild);
645 BOOST_CHECK(block.vtx[5]->GetHash() == hashFreeChild);
646 for (size_t i=0; i<block.vtx.size(); ++i) {
647 // The FreeParent and FreeChild's prioritisations should not impact the child.
648 BOOST_CHECK(block.vtx[i]->GetHash() != hashFreeGrandchild);
649 // De-prioritised transaction should not be included.
650 BOOST_CHECK(block.vtx[i]->GetHash() != hashMediumFeeTx);
651 }
652}
653
654// NOTE: These tests rely on CreateNewBlock doing its own self-validation!
655BOOST_AUTO_TEST_CASE(CreateNewBlock_validity)
656{
657 auto mining{MakeMining()};
658 BOOST_REQUIRE(mining);
659
660 // Note that by default, these tests run with size accounting enabled.
661 CScript scriptPubKey = CScript() << "04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f"_hex << OP_CHECKSIG;
662 BlockAssembler::Options options;
663 options.coinbase_output_script = scriptPubKey;
664 std::unique_ptr<BlockTemplate> block_template;
665
666 // We can't make transactions until we have inputs
667 // Therefore, load 110 blocks :)
668 static_assert(std::size(BLOCKINFO) == 110, "Should have 110 blocks to import");
669 int baseheight = 0;
670 std::vector<CTransactionRef> txFirst;
671 for (const auto& bi : BLOCKINFO) {
672 const int current_height{mining->getTip()->height};
673
674 // Simple block creation, nothing special yet:
675 block_template = mining->createNewBlock(options);
676 BOOST_REQUIRE(block_template);
677
678 CBlock block{block_template->getBlock()};
679 CMutableTransaction txCoinbase(*block.vtx[0]);
680 {
681 LOCK(cs_main);
682 block.nVersion = VERSIONBITS_TOP_BITS;
683 block.nTime = Assert(m_node.chainman)->ActiveChain().Tip()->GetMedianTimePast()+1;
684 txCoinbase.version = 1;
685 txCoinbase.vin[0].scriptSig = CScript{} << (current_height + 1) << bi.extranonce;
686 txCoinbase.vout.resize(1); // Ignore the (optional) segwit commitment added by CreateNewBlock (as the hardcoded nonces don't account for this)
687 txCoinbase.vout[0].scriptPubKey = CScript();
688 block.vtx[0] = MakeTransactionRef(txCoinbase);
689 if (txFirst.size() == 0)
690 baseheight = current_height;
691 if (txFirst.size() < 4)
692 txFirst.push_back(block.vtx[0]);
693 block.hashMerkleRoot = BlockMerkleRoot(block);
694 block.nNonce = bi.nonce;
695 }
696 std::shared_ptr<const CBlock> shared_pblock = std::make_shared<const CBlock>(block);
697 // Alternate calls between Chainman's ProcessNewBlock and submitSolution
698 // via the Mining interface. The former is used by net_processing as well
699 // as the submitblock RPC.
700 if (current_height % 2 == 0) {
701 BOOST_REQUIRE(Assert(m_node.chainman)->ProcessNewBlock(shared_pblock, /*force_processing=*/true, /*min_pow_checked=*/true, nullptr));
702 } else {
703 BOOST_REQUIRE(block_template->submitSolution(block.nVersion, block.nTime, block.nNonce, MakeTransactionRef(txCoinbase)));
704 }
705 {
706 LOCK(cs_main);
707 // The above calls don't guarantee the tip is actually updated, so
708 // we explicitly check this.
709 auto maybe_new_tip{Assert(m_node.chainman)->ActiveChain().Tip()};
710 BOOST_REQUIRE_EQUAL(maybe_new_tip->GetBlockHash(), block.GetHash());
711 }
712 // This just adds coverage
713 mining->waitTipChanged(block.hashPrevBlock);
714 }
715
716 LOCK(cs_main);
717
718 TestBasicMining(scriptPubKey, txFirst, baseheight);
719
720 m_node.chainman->ActiveChain().Tip()->nHeight--;
721 SetMockTime(0);
722
723 TestPackageSelection(scriptPubKey, txFirst);
724
725 m_node.chainman->ActiveChain().Tip()->nHeight--;
726 SetMockTime(0);
727
728 TestPrioritisedMining(scriptPubKey, txFirst);
729}
730
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
static constexpr CAmount COIN
The amount of satoshis in one BTC.
Definition: amount.h:15
node::NodeContext m_node
Definition: bitcoin-gui.cpp:42
int flags
Definition: bitcoin-tx.cpp:536
#define Assert(val)
Identity function.
Definition: check.h:85
Definition: block.h:69
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:141
CBlockIndex * pprev
pointer to the index of the predecessor of this block
Definition: chain.h:147
void BuildSkip()
Build the skiplist pointer for this entry.
Definition: chain.cpp:125
uint256 GetBlockHash() const
Definition: chain.h:243
int nHeight
height of the entry in the chain. The genesis block has height 0
Definition: chain.h:153
static constexpr int nMedianTimeSpan
Definition: chain.h:276
const uint256 * phashBlock
pointer to the hash of the block, if any. Memory is owned by this CBlockIndex
Definition: chain.h:144
CCoinsView that brings transactions from a mempool into view.
Definition: txmempool.h:925
Fee rate in satoshis per kilovirtualbyte: CAmount / kvB.
Definition: feerate.h:33
CAmount GetFee(uint32_t num_bytes) const
Return the fee in satoshis for the given vsize in vbytes.
Definition: feerate.cpp:23
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:415
The basic transaction that is broadcasted on the network and contained in blocks.
Definition: transaction.h:296
static const uint32_t MAX_SEQUENCE_NONFINAL
This is the maximum sequence number that enables both nLockTime and OP_CHECKLOCKTIMEVERIFY (BIP 65).
Definition: transaction.h:87
static const uint32_t SEQUENCE_LOCKTIME_TYPE_FLAG
If CTxIn::nSequence encodes a relative lock-time and this flag is set, the relative lock-time has uni...
Definition: transaction.h:104
static const int SEQUENCE_LOCKTIME_GRANULARITY
In order to use the same number of bits to encode roughly the same wall-clock duration,...
Definition: transaction.h:119
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:304
BOOST_CHECK_EXCEPTION predicates to check the specific validation error.
Definition: setup_common.h:296
Block template interface.
Definition: mining.h:32
Interface giving clients (RPC, Stratum v2 Template Provider in the future) ability to create block te...
Definition: mining.h:64
Generate a new block, without valid proof-of-work.
Definition: miner.h:144
256-bit opaque blob.
Definition: uint256.h:201
static constexpr unsigned int LOCKTIME_VERIFY_SEQUENCE
Flags for nSequence and nLockTime locks.
Definition: consensus.h:28
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
AddToMempool(pool, CTxMemPoolEntry(tx, fee, nTime, nHeight, sequence, spendsCoinbase, sigOpCost, lp))
unsigned int nHeight
bool spendsCoinbase
@ REPLACED
Removed for replacement.
uint256 BlockMerkleRoot(const CBlock &block, bool *mutated)
Definition: merkle.cpp:66
BOOST_AUTO_TEST_CASE(CreateNewBlock_validity)
static std::unique_ptr< CBlockIndex > CreateBlockIndex(int nHeight, CBlockIndex *active_chain_tip) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
Definition: miner_tests.cpp:95
static constexpr struct @14 BLOCKINFO[]
static CFeeRate blockMinFeeRate
Definition: miner_tests.cpp:70
unsigned char extranonce
Definition: miner_tests.cpp:73
unsigned int nonce
Definition: miner_tests.cpp:74
std::unique_ptr< Mining > MakeMining(node::NodeContext &node)
Return implementation of Mining interface.
""_hex is a compile-time user-defined literal returning a std::array<std::byte>, equivalent to ParseH...
Definition: strencodings.h:427
#define BOOST_CHECK_EQUAL(v1, v2)
Definition: object.cpp:18
#define BOOST_CHECK(expr)
Definition: object.cpp:17
static constexpr unsigned int DEFAULT_BLOCK_MIN_TX_FEE
Default for -blockmintxfee, which sets the minimum feerate for a transaction in blocks created by min...
Definition: policy.h:25
static constexpr TransactionSerParams TX_WITH_WITNESS
Definition: transaction.h:195
static CTransactionRef MakeTransactionRef(Tx &&txIn)
Definition: transaction.h:424
@ OP_2
Definition: script.h:85
@ OP_CHECKMULTISIG
Definition: script.h:192
@ OP_CHECKSIG
Definition: script.h:190
@ OP_NOP
Definition: script.h:102
@ OP_1
Definition: script.h:83
@ OP_DROP
Definition: script.h:124
@ OP_0
Definition: script.h:76
size_t GetSerializeSize(const T &t)
Definition: serialize.h:1103
static constexpr CAmount CENT
Definition: setup_common.h:47
node::NodeContext m_node
Definition: setup_common.h:66
A mutable version of CTransaction.
Definition: transaction.h:378
std::vector< CTxOut > vout
Definition: transaction.h:380
Txid GetHash() const
Compute the hash of this CMutableTransaction.
Definition: transaction.cpp:69
std::vector< CTxIn > vin
Definition: transaction.h:379
Data structure storing a fee and size, ordered by increasing fee/size.
Definition: feefrac.h:39
Definition: txmempool.h:19
TestMemPoolEntryHelper & SigOpsCost(unsigned int _sigopsCost)
Definition: txmempool.h:38
TestMemPoolEntryHelper & Time(NodeSeconds tp)
Definition: txmempool.h:34
CAmount nFee
Definition: txmempool.h:21
CTxMemPoolEntry FromTx(const CMutableTransaction &tx) const
Definition: txmempool.cpp:33
TestMemPoolEntryHelper & SpendsCoinbase(bool _flag)
Definition: txmempool.h:37
unsigned int nHeight
Definition: txmempool.h:23
TestMemPoolEntryHelper & Fee(CAmount _fee)
Definition: txmempool.h:33
Testing setup that configures a complete environment.
Definition: setup_common.h:121
Bilingual messages:
Definition: translation.h:24
bool empty() const
Definition: translation.h:35
std::unique_ptr< Mining > MakeMining()
Definition: miner_tests.cpp:61
void TestPackageSelection(const CScript &scriptPubKey, const std::vector< CTransactionRef > &txFirst) EXCLUSIVE_LOCKS_REQUIRED(void TestBasicMining(const CScript &scriptPubKey, const std::vector< CTransactionRef > &txFirst, int baseheight) EXCLUSIVE_LOCKS_REQUIRED(void TestPrioritisedMining(const CScript &scriptPubKey, const std::vector< CTransactionRef > &txFirst) EXCLUSIVE_LOCKS_REQUIRED(bool TestSequenceLocks(const CTransaction &tx, CTxMemPool &tx_mempool) EXCLUSIVE_LOCKS_REQUIRED(
Definition: miner_tests.cpp:43
std::unique_ptr< CTxMemPool > mempool
Definition: context.h:68
std::unique_ptr< ChainstateManager > chainman
Definition: context.h:72
#define LOCK(cs)
Definition: sync.h:257
CTxMemPool::Options MemPoolOptionsForTest(const NodeContext &node)
Definition: txmempool.cpp:20
#define EXCLUSIVE_LOCKS_REQUIRED(...)
Definition: threadsafety.h:49
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
Definition: time.cpp:39
bool SequenceLocks(const CTransaction &tx, int flags, std::vector< int > &prevHeights, const CBlockIndex &block)
Check if transaction is final per BIP 68 sequence numbers and can be included in a block.
Definition: tx_verify.cpp:107
bool IsFinalTx(const CTransaction &tx, int nBlockHeight, int64_t nBlockTime)
Check if transaction is final and can be included in a block with the specified height and time.
Definition: tx_verify.cpp:17
bool CheckFinalTxAtTip(const CBlockIndex &active_chain_tip, const CTransaction &tx)
Definition: validation.cpp:146
bool CheckSequenceLocksAtTip(CBlockIndex *tip, const LockPoints &lock_points)
Check if transaction will be BIP68 final in the next block to be created on top of tip.
Definition: validation.cpp:245
bool CheckFinalTxAtTip(const CBlockIndex &active_chain_tip, const CTransaction &tx) EXCLUSIVE_LOCKS_REQUIRED(std::optional< LockPoints > CalculateLockPointsAtTip(CBlockIndex *tip, const CCoinsView &coins_view, const CTransaction &tx)
Check if transaction will be final in the next block to be created.
Definition: validation.h:309
static const int32_t VERSIONBITS_TOP_BITS
What bits to set in version for versionbits blocks.
Definition: versionbits.h:16