5#include <bitcoin-build-config.h>
20#if defined(USE_SQLITE)
26 const auto test_setup = MakeNoLogFileContext<TestingSetup>();
28 WalletContext context;
29 context.args = &test_setup->m_args;
30 context.chain = test_setup->m_node.chain.get();
33 int NUM_WATCH_ONLY_ADDR = 20;
38 LegacyDataSPKM* legacy_spkm =
wallet->GetOrCreateLegacyDataSPKM();
41 std::vector<CScript> scripts_watch_only;
42 for (
int w = 0; w < NUM_WATCH_ONLY_ADDR; ++w) {
52 for (
int j = 0; j < 500; ++j) {
56 Assert(legacy_spkm->LoadKey(key, pubkey));
62 mtx.
vout.emplace_back(
COIN, scripts_watch_only.at(j % NUM_WATCH_ONLY_ADDR));
71 assert(res->watchonly_wallet);
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
static constexpr CAmount COIN
The amount of satoshis in one BTC.
#define Assert(val)
Identity function.
An encapsulated private key.
CPubKey GetPubKey() const
Compute the public key from a private key.
An encapsulated public key.
Serialized script, used inside transaction inputs and outputs.
Main entry point to nanobench's benchmarking facility.
Bench & run(char const *benchmarkName, Op &&op)
Repeatedly calls op() based on the configuration, and performs measurements.
Bench & epochs(size_t numEpochs) noexcept
Controls number of epochs, the number of measurements to perform.
CKey GenerateRandomKey(bool compressed) noexcept
BENCHMARK(WalletBalanceDirty, benchmark::PriorityLevel::HIGH)
util::Result< MigrationResult > MigrateLegacyToDescriptor(const std::string &wallet_name, const SecureString &passphrase, WalletContext &context)
Do all steps to migrate a legacy wallet to a descriptor wallet.
std::unique_ptr< WalletDatabase > CreateMockableWalletDatabase(MockableData records)
CTxDestination GetDestinationForKey(const CPubKey &key, OutputType type)
Get a destination of the requested type (if possible) to the specified key.
static CTransactionRef MakeTransactionRef(Tx &&txIn)
Describes a place in the block chain to another node such that if the other node doesn't have the sam...
A mutable version of CTransaction.
std::vector< CTxOut > vout