Bitcoin Core 22.99.0
P2P Digital Currency
wallet_balance.cpp
Go to the documentation of this file.
1// Copyright (c) 2012-2020 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>
7#include <node/context.h>
8#include <test/util/mining.h>
10#include <test/util/wallet.h>
11#include <validationinterface.h>
12#include <wallet/receive.h>
13#include <wallet/wallet.h>
14
15#include <optional>
16
17static void WalletBalance(benchmark::Bench& bench, const bool set_dirty, const bool add_mine)
18{
19 const auto test_setup = MakeNoLogFileContext<const TestingSetup>();
20
21 const auto& ADDRESS_WATCHONLY = ADDRESS_BCRT1_UNSPENDABLE;
22
23 CWallet wallet{test_setup->m_node.chain.get(), "", CreateMockWalletDatabase()};
24 {
25 LOCK(wallet.cs_wallet);
26 wallet.SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
27 wallet.SetupDescriptorScriptPubKeyMans();
28 if (wallet.LoadWallet() != DBErrors::LOAD_OK) assert(false);
29 }
30 auto handler = test_setup->m_node.chain->handleNotifications({&wallet, [](CWallet*) {}});
31
32 const std::optional<std::string> address_mine{add_mine ? std::optional<std::string>{getnewaddress(wallet)} : std::nullopt};
33
34 for (int i = 0; i < 100; ++i) {
35 generatetoaddress(test_setup->m_node, address_mine.value_or(ADDRESS_WATCHONLY));
36 generatetoaddress(test_setup->m_node, ADDRESS_WATCHONLY);
37 }
39
40 auto bal = GetBalance(wallet); // Cache
41
42 bench.run([&] {
43 if (set_dirty) wallet.MarkDirty();
44 bal = GetBalance(wallet);
45 if (add_mine) assert(bal.m_mine_trusted > 0);
46 });
47}
48
49static void WalletBalanceDirty(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ true, /* add_mine */ true); }
50static void WalletBalanceClean(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ false, /* add_mine */ true); }
51static void WalletBalanceMine(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ false, /* add_mine */ true); }
52static void WalletBalanceWatch(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ false, /* add_mine */ false); }
53
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:229
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
Balance GetBalance(const CWallet &wallet, const int min_depth, bool avoid_reuse)
Definition: receive.cpp:317
bool(* handler)(const std::any &context, HTTPRequest *req, const std::string &strReq)
Definition: rest.cpp:715
static RPCHelpMan generatetoaddress()
Definition: mining.cpp:254
#define LOCK(cs)
Definition: sync.h:226
const std::string ADDRESS_BCRT1_UNSPENDABLE
Definition: wallet.cpp:15
std::string getnewaddress(CWallet &w)
Returns a new address from the wallet.
assert(!tx.IsCoinBase())
void SyncWithValidationInterfaceQueue()
This is a synonym for the following, which asserts certain locks are not held: std::promise<void> pro...
static void WalletBalanceClean(benchmark::Bench &bench)
static void WalletBalance(benchmark::Bench &bench, const bool set_dirty, const bool add_mine)
static void WalletBalanceMine(benchmark::Bench &bench)
BENCHMARK(WalletBalanceDirty)
static void WalletBalanceWatch(benchmark::Bench &bench)
static void WalletBalanceDirty(benchmark::Bench &bench)
std::unique_ptr< WalletDatabase > CreateMockWalletDatabase()
Return object for accessing temporary in-memory database.
Definition: walletdb.cpp:1189
@ WALLET_FLAG_DESCRIPTORS
Indicate that this wallet supports DescriptorScriptPubKeyMan.
Definition: walletutil.h:65