Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
wallet_test_fixture.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
6
7#include <chainparams.h>
8#include <scheduler.h>
10#include <wallet/rpc/backup.h>
11
13 : TestingSetup(chainName), m_wallet_client{interfaces::MakeWalletClient(
14 *m_node.chain, *Assert(m_node.args))},
15 m_wallet(m_node.chain.get(), "", CreateMockWalletDatabase()) {
16 bool fFirstRun;
19 m_node.chain->handleNotifications({&m_wallet, [](CWallet *) {}});
20 m_wallet_client->registerRpcs();
21}
22
24 if (m_node.scheduler) {
25 m_node.scheduler->stop();
26 }
27}
#define Assert(val)
Identity function.
Definition check.h:84
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition wallet.h:254
DBErrors LoadWallet(bool &fFirstRunRet)
Definition wallet.cpp:2171
NodeContext & m_node
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85
WalletTestingSetup(const std::string &chainName=CBaseChainParams::MAIN)
std::unique_ptr< interfaces::Handler > m_chain_notifications_handler
std::unique_ptr< interfaces::WalletClient > m_wallet_client
std::shared_ptr< CWallet > m_wallet
std::unique_ptr< WalletDatabase > CreateMockWalletDatabase()
Return object for accessing temporary in-memory database.