mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-05 19:26:17 +00:00
These calls are no longer needed after edc316020e8270dafc5e31465d532baebdafd3dd from #19098 which started instantiating BasicTestingSetup.m_node.chain Patch from MarcoFalke <falke.marco@gmail.com> in https://github.com/bitcoin/bitcoin/pull/19425#discussion_r526701954 Co-authored-by: MarcoFalke <falke.marco@gmail.com>
26 lines
884 B
C++
26 lines
884 B
C++
// Copyright (c) 2018-2019 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 <interfaces/wallet.h>
|
|
#include <node/context.h>
|
|
#include <test/util/setup_common.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::WalletClient> m_wallet_client;
|
|
};
|
|
|
|
#endif // BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
|