Bitcoin Core
31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
src
bench
block_assemble.cpp
Go to the documentation of this file.
1
// Copyright (c) 2011-present 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/consensus.h
>
7
#include <
node/miner.h
>
8
#include <
primitives/transaction.h
>
9
#include <random.h>
10
#include <
script/script.h
>
11
#include <
sync.h
>
12
#include <
test/util/mining.h
>
13
#include <
test/util/script.h
>
14
#include <
test/util/setup_common.h
>
15
#include <validation.h>
16
17
#include <array>
18
#include <cassert>
19
#include <cstddef>
20
#include <memory>
21
#include <vector>
22
23
using
node::BlockAssembler
;
24
25
static
void
AssembleBlock
(
benchmark::Bench
& bench)
26
{
27
const
auto
test_setup =
MakeNoLogFileContext<const TestingSetup>
();
28
29
CScriptWitness
witness;
30
witness.
stack
.push_back(
WITNESS_STACK_ELEM_OP_TRUE
);
31
BlockAssembler::Options
options;
32
options.
coinbase_output_script
=
P2WSH_OP_TRUE
;
33
options.
include_dummy_extranonce
=
true
;
34
35
// Collect some loose transactions that spend the coinbases of our mined blocks
36
constexpr
size_t
NUM_BLOCKS{200};
37
std::array<
CTransactionRef
, NUM_BLOCKS -
COINBASE_MATURITY
+ 1> txs;
38
for
(
size_t
b{0}; b < NUM_BLOCKS; ++b) {
39
CMutableTransaction
tx;
40
tx.
vin
.emplace_back(
MineBlock
(test_setup->m_node, options));
41
tx.
vin
.back().scriptWitness = witness;
42
tx.
vout
.emplace_back(1337,
P2WSH_OP_TRUE
);
43
if
(NUM_BLOCKS - b >=
COINBASE_MATURITY
)
44
txs.at(b) =
MakeTransactionRef
(tx);
45
}
46
{
47
LOCK
(
::cs_main
);
48
49
for
(
const
auto
& txr : txs) {
50
const
MempoolAcceptResult
res = test_setup->m_node.chainman->ProcessTransaction(txr);
51
assert
(res.
m_result_type
==
MempoolAcceptResult::ResultType::VALID
);
52
}
53
}
54
55
bench.
run
([&] {
56
PrepareBlock
(test_setup->m_node, options);
57
});
58
}
59
static
void
BlockAssemblerAddPackageTxns
(
benchmark::Bench
& bench)
60
{
61
FastRandomContext
det_rand{
true
};
62
auto
testing_setup{
MakeNoLogFileContext<TestChain100Setup>
()};
63
testing_setup->PopulateMempool(det_rand,
/*num_transactions=*/
1000,
/*submit=*/
true
);
64
BlockAssembler::Options
assembler_options;
65
assembler_options.
test_block_validity
=
false
;
66
assembler_options.
coinbase_output_script
=
P2WSH_OP_TRUE
;
67
68
bench.
run
([&] {
69
PrepareBlock
(testing_setup->m_node, assembler_options);
70
});
71
}
72
73
BENCHMARK
(
AssembleBlock
);
74
BENCHMARK
(
BlockAssemblerAddPackageTxns
);
bench.h
BENCHMARK
#define BENCHMARK(n)
Definition
bench.h:68
AssembleBlock
static void AssembleBlock(benchmark::Bench &bench)
Definition
block_assemble.cpp:25
BlockAssemblerAddPackageTxns
static void BlockAssemblerAddPackageTxns(benchmark::Bench &bench)
Definition
block_assemble.cpp:59
FastRandomContext
Fast randomness source.
Definition
random.h:386
ankerl::nanobench::Bench
Main entry point to nanobench's benchmarking facility.
Definition
nanobench.h:627
ankerl::nanobench::Bench::run
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition
nanobench.h:1234
node::BlockAssembler
Generate a new block, without valid proof-of-work.
Definition
miner.h:61
consensus.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
transaction.h
MakeTransactionRef
static CTransactionRef MakeTransactionRef(Tx &&txIn)
Definition
transaction.h:404
CTransactionRef
std::shared_ptr< const CTransaction > CTransactionRef
Definition
transaction.h:403
script.h
setup_common.h
MakeNoLogFileContext
std::unique_ptr< T > MakeNoLogFileContext(const ChainType chain_type=ChainType::REGTEST, TestOpts opts={})
Make a test setup that has disk access to the debug.log file disabled.
Definition
setup_common.h:250
BlockAssembler::Options
Definition
miner.h:81
BlockAssembler::Options::test_block_validity
bool test_block_validity
Definition
miner.h:86
CMutableTransaction
A mutable version of CTransaction.
Definition
transaction.h:358
CMutableTransaction::vout
std::vector< CTxOut > vout
Definition
transaction.h:360
CMutableTransaction::vin
std::vector< CTxIn > vin
Definition
transaction.h:359
CScriptWitness
Definition
script.h:577
CScriptWitness::stack
std::vector< std::vector< unsigned char > > stack
Definition
script.h:580
MempoolAcceptResult
Validation result for a transaction evaluated by MemPoolAccept (single or package).
Definition
validation.h:131
MempoolAcceptResult::m_result_type
const ResultType m_result_type
Result type.
Definition
validation.h:140
MempoolAcceptResult::ResultType::VALID
@ VALID
Definition
validation.h:134
node::BlockCreateOptions::include_dummy_extranonce
bool include_dummy_extranonce
Whether to include an OP_0 as a dummy extraNonce in the template's coinbase.
Definition
types.h:78
node::BlockCreateOptions::coinbase_output_script
CScript coinbase_output_script
Script to put in the coinbase transaction.
Definition
types.h:74
sync.h
LOCK
#define LOCK(cs)
Definition
sync.h:258
PrepareBlock
std::shared_ptr< CBlock > PrepareBlock(const NodeContext &node, const BlockAssembler::Options &assembler_options)
Definition
mining.cpp:125
MineBlock
COutPoint MineBlock(const NodeContext &node, const node::BlockAssembler::Options &assembler_options)
Returns the generated coin.
Definition
mining.cpp:72
mining.h
script.h
WITNESS_STACK_ELEM_OP_TRUE
static const std::vector< uint8_t > WITNESS_STACK_ELEM_OP_TRUE
Definition
script.h:12
P2WSH_OP_TRUE
static const CScript P2WSH_OP_TRUE
Definition
script.h:13
assert
assert(!tx.IsCoinBase())
Generated on
for Bitcoin Core by
1.16.1