Bitcoin Core 31.99.0
P2P Digital Currency
wallet_balance.cpp
Go to the documentation of this file.
1// Copyright (c) 2012-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 <interfaces/chain.h>
9#include <primitives/block.h>
11#include <sync.h>
12#include <test/util/mining.h>
14#include <test/util/time.h>
15#include <uint256.h>
16#include <util/check.h>
17#include <validation.h>
18#include <wallet/db.h>
19#include <wallet/receive.h>
20#include <wallet/sqlite.h>
21#include <wallet/test/util.h>
22#include <wallet/wallet.h>
23#include <wallet/walletutil.h>
24
25#include <memory>
26#include <optional>
27#include <string>
28
29namespace wallet {
30static void WalletBalance(benchmark::Bench& bench, const bool set_dirty, const bool add_mine)
31{
32 const auto test_setup = MakeNoLogFileContext<const TestingSetup>();
33
34 const auto& ADDRESS_WATCHONLY = ADDRESS_BCRT1_UNSPENDABLE;
35
36 // Set clock to genesis block, so the descriptors/keys creation time don't interfere with the blocks scanning process.
37 // The reason is 'generatetoaddress', which creates a chain with deterministic timestamps in the past.
38 FakeNodeClock clock{test_setup->m_node.chainman->GetParams().GenesisBlock().Time()};
39 CWallet wallet{test_setup->m_node.chain.get(), "", MakeInMemoryWalletDatabase()};
40 {
41 LOCK(wallet.cs_wallet);
42 wallet.SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
43 wallet.SetupDescriptorScriptPubKeyMans();
44 }
45 auto handler = test_setup->m_node.chain->handleNotifications({&wallet, [](CWallet*) {}});
46
47 const std::optional<std::string> address_mine{add_mine ? std::optional<std::string>{getnewaddress(wallet)} : std::nullopt};
48
49 for (int i = 0; i < 100; ++i) {
50 generatetoaddress(test_setup->m_node, address_mine.value_or(ADDRESS_WATCHONLY));
51 generatetoaddress(test_setup->m_node, ADDRESS_WATCHONLY);
52 }
53 // Calls SyncWithValidationInterfaceQueue
54 wallet.chain().waitForNotificationsIfTipChanged(uint256::ZERO);
55
56 auto bal = GetBalance(wallet); // Cache
57
58 bench.setup([&] {
59 if (set_dirty) wallet.MarkDirty();
60 })
61 .run([&] {
62 bal = GetBalance(wallet);
64 assert(add_mine == (bal.m_mine_trusted > 0));
65 });
66}
67
68static void WalletBalanceDirty(benchmark::Bench& bench) { WalletBalance(bench, /*set_dirty=*/true, /*add_mine=*/true); }
69static void WalletBalanceClean(benchmark::Bench& bench) { WalletBalance(bench, /*set_dirty=*/false, /*add_mine=*/true); }
70static void WalletBalanceWatch(benchmark::Bench& bench) { WalletBalance(bench, /*set_dirty=*/false, /*add_mine=*/false); }
71
75} // namespace wallet
Helper to initialize the global NodeClock, let a duration elapse, and reset it after use in a test.
Definition: time.h:54
Main entry point to nanobench's benchmarking facility.
Definition: nanobench.h:649
detail::SetupRunner< SetupOp > setup(SetupOp setupOp)
Configure an untimed setup step per epoch (forces single-iteration epochs).
Definition: nanobench.h:1302
static const uint256 ZERO
Definition: uint256.h:204
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:310
void doNotOptimizeAway(Arg &&arg)
Makes sure none of the given arguments are optimized away by the compiler.
Definition: nanobench.h:1353
std::unique_ptr< WalletDatabase > MakeInMemoryWalletDatabase()
Definition: sqlite.cpp:729
const std::string ADDRESS_BCRT1_UNSPENDABLE
Definition: util.h:32
static void WalletBalanceDirty(benchmark::Bench &bench)
static void WalletBalance(benchmark::Bench &bench, const bool set_dirty, const bool add_mine)
static void WalletBalanceWatch(benchmark::Bench &bench)
BENCHMARK(CoinSelection)
Balance GetBalance(const CWallet &wallet, const int min_depth, bool avoid_reuse, bool include_nonmempool)
Definition: receive.cpp:245
@ WALLET_FLAG_DESCRIPTORS
Indicate that this wallet supports DescriptorScriptPubKeyMan.
Definition: walletutil.h:53
RPCMethod getnewaddress()
Definition: addresses.cpp:21
static void WalletBalanceClean(benchmark::Bench &bench)
bool(* handler)(const std::any &context, HTTPRequest *req, const std::string &strReq)
Definition: rest.cpp:1144
static RPCMethod generatetoaddress()
Definition: mining.cpp:295
#define LOCK(cs)
Definition: sync.h:268
assert(!tx.IsCoinBase())