Bitcoin Core
24.99.0
P2P Digital Currency
src
bench
block_assemble.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 <
bench/bench.h
>
6
#include <
consensus/validation.h
>
7
#include <
crypto/sha256.h
>
8
#include <
node/miner.h
>
9
#include <
test/util/mining.h
>
10
#include <
test/util/script.h
>
11
#include <
test/util/setup_common.h
>
12
#include <txmempool.h>
13
#include <
validation.h
>
14
15
16
#include <vector>
17
18
static
void
AssembleBlock
(
benchmark::Bench
& bench)
19
{
20
const
auto
test_setup = MakeNoLogFileContext<const TestingSetup>();
21
22
CScriptWitness
witness;
23
witness.
stack
.push_back(
WITNESS_STACK_ELEM_OP_TRUE
);
24
25
// Collect some loose transactions that spend the coinbases of our mined blocks
26
constexpr
size_t
NUM_BLOCKS{200};
27
std::array<
CTransactionRef
, NUM_BLOCKS -
COINBASE_MATURITY
+ 1> txs;
28
for
(
size_t
b{0}; b < NUM_BLOCKS; ++b) {
29
CMutableTransaction
tx;
30
tx.
vin
.push_back(
MineBlock
(test_setup->m_node,
P2WSH_OP_TRUE
));
31
tx.
vin
.back().scriptWitness = witness;
32
tx.
vout
.emplace_back(1337,
P2WSH_OP_TRUE
);
33
if
(NUM_BLOCKS - b >=
COINBASE_MATURITY
)
34
txs.at(b) =
MakeTransactionRef
(tx);
35
}
36
{
37
LOCK
(::
cs_main
);
38
39
for
(
const
auto
& txr : txs) {
40
const
MempoolAcceptResult
res = test_setup->m_node.chainman->ProcessTransaction(txr);
41
assert
(res.
m_result_type
==
MempoolAcceptResult::ResultType::VALID
);
42
}
43
}
44
45
bench.
run
([&] {
46
PrepareBlock
(test_setup->m_node,
P2WSH_OP_TRUE
);
47
});
48
}
49
static
void
BlockAssemblerAddPackageTxns
(
benchmark::Bench
& bench)
50
{
51
FastRandomContext
det_rand{
true
};
52
auto
testing_setup{MakeNoLogFileContext<TestChain100Setup>()};
53
testing_setup->PopulateMempool(det_rand,
/*num_transactions=*/
1000,
/*submit=*/
true
);
54
node::BlockAssembler::Options
assembler_options;
55
assembler_options.
test_block_validity
=
false
;
56
57
bench.
run
([&] {
58
PrepareBlock
(testing_setup->m_node,
P2WSH_OP_TRUE
, assembler_options);
59
});
60
}
61
62
BENCHMARK
(
AssembleBlock
,
benchmark::PriorityLevel::HIGH
);
63
BENCHMARK
(
BlockAssemblerAddPackageTxns
,
benchmark::PriorityLevel::LOW
);
bench.h
AssembleBlock
static void AssembleBlock(benchmark::Bench &bench)
Definition:
block_assemble.cpp:18
BlockAssemblerAddPackageTxns
static void BlockAssemblerAddPackageTxns(benchmark::Bench &bench)
Definition:
block_assemble.cpp:49
BENCHMARK
BENCHMARK(AssembleBlock, benchmark::PriorityLevel::HIGH)
FastRandomContext
Fast randomness source.
Definition:
random.h:144
ankerl::nanobench::Bench
Main entry point to nanobench's benchmarking facility.
Definition:
nanobench.h:623
ankerl::nanobench::Bench::run
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition:
nanobench.h:1230
validation.h
COINBASE_MATURITY
static const int COINBASE_MATURITY
Coinbase transaction outputs can only be spent after this number of new blocks (network rule)
Definition:
consensus.h:19
cs_main
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition:
cs_main.cpp:8
miner.h
benchmark::HIGH
@ HIGH
Definition:
bench.h:47
benchmark::LOW
@ LOW
Definition:
bench.h:46
MakeTransactionRef
static CTransactionRef MakeTransactionRef(Tx &&txIn)
Definition:
transaction.h:422
CTransactionRef
std::shared_ptr< const CTransaction > CTransactionRef
Definition:
transaction.h:421
setup_common.h
sha256.h
CMutableTransaction
A mutable version of CTransaction.
Definition:
transaction.h:380
CMutableTransaction::vout
std::vector< CTxOut > vout
Definition:
transaction.h:382
CMutableTransaction::vin
std::vector< CTxIn > vin
Definition:
transaction.h:381
CScriptWitness
Definition:
script.h:563
CScriptWitness::stack
std::vector< std::vector< unsigned char > > stack
Definition:
script.h:566
MempoolAcceptResult
Validation result for a single transaction mempool acceptance.
Definition:
validation.h:117
MempoolAcceptResult::m_result_type
const ResultType m_result_type
Result type.
Definition:
validation.h:126
MempoolAcceptResult::ResultType::VALID
@ VALID
node::BlockAssembler::Options
Definition:
miner.h:152
node::BlockAssembler::Options::test_block_validity
bool test_block_validity
Definition:
miner.h:157
LOCK
#define LOCK(cs)
Definition:
sync.h:258
MineBlock
CTxIn MineBlock(const NodeContext &node, const CScript &coinbase_scriptPubKey)
Returns the generated coin.
Definition:
mining.cpp:61
PrepareBlock
std::shared_ptr< CBlock > PrepareBlock(const NodeContext &node, const CScript &coinbase_scriptPubKey, const BlockAssembler::Options &assembler_options)
Definition:
mining.cpp:76
mining.h
script.h
WITNESS_STACK_ELEM_OP_TRUE
static const std::vector< uint8_t > WITNESS_STACK_ELEM_OP_TRUE
Definition:
script.h:11
P2WSH_OP_TRUE
static const CScript P2WSH_OP_TRUE
Definition:
script.h:12
assert
assert(!tx.IsCoinBase())
validation.h
Generated on Tue Mar 28 2023 02:44:19 for Bitcoin Core by
1.9.1