Bitcoin Core 31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
wallet_test_fixture.h
Go to the documentation of this file.
1// Copyright (c) 2016-present 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#ifndef BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
6#define BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
7
9
10#include <interfaces/chain.h>
11#include <interfaces/wallet.h>
12#include <node/context.h>
13#include <util/chaintype.h>
14#include <util/check.h>
15#include <wallet/wallet.h>
16
17#include <memory>
18
19namespace wallet {
23 explicit WalletTestingSetup(ChainType chainType = ChainType::MAIN);
25
26 std::unique_ptr<interfaces::WalletLoader> m_wallet_loader;
28 std::unique_ptr<interfaces::Handler> m_chain_notifications_handler;
29};
30} // namespace wallet
31
32#endif // BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
ChainType
Definition chaintype.h:11
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition wallet.h:310
TestingSetup(ChainType chainType=ChainType::MAIN, TestOpts={})
std::unique_ptr< interfaces::WalletLoader > m_wallet_loader
std::unique_ptr< interfaces::Handler > m_chain_notifications_handler
WalletTestingSetup(ChainType chainType=ChainType::MAIN)