Bitcoin Core  22.0.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>
9 #include <test/util/setup_common.h>
10 #include <test/util/wallet.h>
11 #include <validationinterface.h>
12 #include <wallet/wallet.h>
13 
14 #include <optional>
15 
16 static void WalletBalance(benchmark::Bench& bench, const bool set_dirty, const bool add_watchonly, const bool add_mine)
17 {
18  const auto test_setup = MakeNoLogFileContext<const TestingSetup>();
19 
20  const auto& ADDRESS_WATCHONLY = ADDRESS_BCRT1_UNSPENDABLE;
21 
22  CWallet wallet{test_setup->m_node.chain.get(), "", CreateMockWalletDatabase()};
23  {
24  wallet.SetupLegacyScriptPubKeyMan();
25  if (wallet.LoadWallet() != DBErrors::LOAD_OK) assert(false);
26  }
27  auto handler = test_setup->m_node.chain->handleNotifications({&wallet, [](CWallet*) {}});
28 
29  const std::optional<std::string> address_mine{add_mine ? std::optional<std::string>{getnewaddress(wallet)} : std::nullopt};
30  if (add_watchonly) importaddress(wallet, ADDRESS_WATCHONLY);
31 
32  for (int i = 0; i < 100; ++i) {
33  generatetoaddress(test_setup->m_node, address_mine.value_or(ADDRESS_WATCHONLY));
34  generatetoaddress(test_setup->m_node, ADDRESS_WATCHONLY);
35  }
37 
38  auto bal = wallet.GetBalance(); // Cache
39 
40  bench.run([&] {
41  if (set_dirty) wallet.MarkDirty();
42  bal = wallet.GetBalance();
43  if (add_mine) assert(bal.m_mine_trusted > 0);
44  if (add_watchonly) assert(bal.m_watchonly_trusted > 0);
45  });
46 }
47 
48 static void WalletBalanceDirty(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ true, /* add_watchonly */ true, /* add_mine */ true); }
49 static void WalletBalanceClean(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ false, /* add_watchonly */ true, /* add_mine */ true); }
50 static void WalletBalanceMine(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ false, /* add_watchonly */ false, /* add_mine */ true); }
51 static void WalletBalanceWatch(benchmark::Bench& bench) { WalletBalance(bench, /* set_dirty */ false, /* add_watchonly */ true, /* add_mine */ false); }
52 
std::unique_ptr< WalletDatabase > CreateMockWalletDatabase()
Return object for accessing temporary in-memory database.
Definition: walletdb.cpp:1156
void SyncWithValidationInterfaceQueue()
This is a synonym for the following, which asserts certain locks are not held: std::promise<void> pro...
assert(!tx.IsCoinBase())
static void WalletBalanceDirty(benchmark::Bench &bench)
bool(* handler)(const std::any &context, HTTPRequest *req, const std::string &strReq)
Definition: rest.cpp:713
static RPCHelpMan generatetoaddress()
Definition: mining.cpp:254
BENCHMARK(WalletBalanceDirty)
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Definition: nanobench.h:1181
static void WalletBalanceClean(benchmark::Bench &bench)
RPCHelpMan importaddress()
Definition: rpcdump.cpp:222
static void WalletBalanceMine(benchmark::Bench &bench)
static void WalletBalance(benchmark::Bench &bench, const bool set_dirty, const bool add_watchonly, const bool add_mine)
static void WalletBalanceWatch(benchmark::Bench &bench)
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:226
static RPCHelpMan getnewaddress()
Definition: rpcwallet.cpp:234
Main entry point to nanobench&#39;s benchmarking facility.
Definition: nanobench.h:614