Bitcoin ABC 0.32.4
P2P Digital Currency
checkblock.cpp
Go to the documentation of this file.
1// Copyright (c) 2016 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 <bench/data.h>
7
8#include <chainparams.h>
9#include <config.h>
11#include <streams.h>
12#include <validation.h>
13
14// These are the two major time-sinks which happen after we have fully received
15// a block off the wire, but before we can relay the block on to peers using
16// compact block relay.
17
20 std::byte a{0};
21 // Prevent compaction
22 stream.write({&a, 1});
23
24 bench.unit("block").run([&] {
25 CBlock block;
26 stream >> block;
27 bool rewound = stream.Rewind(benchmark::data::block413567.size());
28 assert(rewound);
29 });
30}
31
34 std::byte a{0};
35 // Prevent compaction
36 stream.write({&a, 1});
37
38 const Config &config = GetConfig();
39 const Consensus::Params params = config.GetChainParams().GetConsensus();
40 BlockValidationOptions options(config);
41 bench.unit("block").run([&] {
42 // Note that CBlock caches its checked state, so we need to recreate it
43 // here.
44 CBlock block;
45 stream >> block;
46 bool rewound = stream.Rewind(benchmark::data::block413567.size());
47 assert(rewound);
48
49 BlockValidationState validationState;
50 bool checked = CheckBlock(block, validationState, params, options);
51 assert(checked);
52 });
53}
54
BENCHMARK(DeserializeBlockTest)
static void DeserializeAndCheckBlockTest(benchmark::Bench &bench)
Definition: checkblock.cpp:32
static void DeserializeBlockTest(benchmark::Bench &bench)
Definition: checkblock.cpp:18
Definition: block.h:60
const Consensus::Params & GetConsensus() const
Definition: chainparams.h:98
Definition: config.h:19
virtual const CChainParams & GetChainParams() const =0
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:173
Main entry point to nanobench's benchmarking facility.
Definition: nanobench.h:616
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition: nanobench.h:1183
Bench & unit(char const *unit)
Sets the operation unit.
const Config & GetConfig()
Definition: config.cpp:40
bool CheckBlock(const CCheckpointData &data, int nHeight, const BlockHash &hash)
Returns true if block passes checkpoint checks.
Definition: checkpoints.cpp:11
const std::vector< uint8_t > block413567
Definition: data.cpp:11
Parameters that influence chain consensus.
Definition: params.h:34
assert(!tx.IsCoinBase())