Bitcoin Core  22.0.0
P2P Digital Currency
wallet_test_fixture.cpp
Go to the documentation of this file.
1 // Copyright (c) 2016-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 
6 
7 WalletTestingSetup::WalletTestingSetup(const std::string& chainName)
8  : TestingSetup(chainName),
9  m_wallet(m_node.chain.get(), "", CreateMockWalletDatabase())
10 {
12  m_chain_notifications_handler = m_node.chain->handleNotifications({ &m_wallet, [](CWallet*) {} });
13  m_wallet_client->registerRpcs();
14 }
std::unique_ptr< WalletDatabase > CreateMockWalletDatabase()
Return object for accessing temporary in-memory database.
Definition: walletdb.cpp:1156
std::shared_ptr< CWallet > m_wallet
Definition: interfaces.cpp:496
std::unique_ptr< interfaces::Chain > chain
Definition: context.h:50
NodeContext & m_node
DBErrors LoadWallet()
Definition: wallet.cpp:1981
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:226
std::unique_ptr< interfaces::WalletClient > m_wallet_client
std::unique_ptr< interfaces::Handler > m_chain_notifications_handler
WalletTestingSetup(const std::string &chainName=CBaseChainParams::MAIN)