mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 22:32:37 -03:00
ea961c3d72
Route calls during node initialization and shutdown that would happen between a node process and wallet processes through the serializable `Chain::Client` interface, rather than `WalletInitInterface` which is now simpler and only deals with early initialization and parameter interaction. This commit mostly does not change behavior. The only change is that the "Wallet disabled!" and "No wallet support compiled in!" messages are now logged earlier during startup.
24 lines
889 B
C++
24 lines
889 B
C++
// Copyright (c) 2018 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
|
|
#define BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
|
|
|
|
#include <interfaces/chain.h>
|
|
#include <test/test_bitcoin.h>
|
|
|
|
|
|
struct InitWalletDirTestingSetup: public BasicTestingSetup {
|
|
explicit InitWalletDirTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
|
|
~InitWalletDirTestingSetup();
|
|
void SetWalletDir(const fs::path& walletdir_path);
|
|
|
|
fs::path m_datadir;
|
|
fs::path m_cwd;
|
|
std::map<std::string, fs::path> m_walletdir_path_cases;
|
|
std::unique_ptr<interfaces::Chain> m_chain = interfaces::MakeChain();
|
|
std::unique_ptr<interfaces::ChainClient> m_chain_client;
|
|
};
|
|
|
|
#endif // BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
|