mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-05 18:23:03 +01:00
This removes a source of complexity and indirection that makes it harder to understand path checking code. Path checks will be simplified in upcoming commits. There is no change in behavior in this commit other than a slightly more descriptive error message in `loadwallet` if the default "" wallet can't be found. (The error message is improved more in upcoming commit "wallet: Remove path checking code from loadwallet RPC".)
16 lines
598 B
C++
16 lines
598 B
C++
// Copyright (c) 2016-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <wallet/test/wallet_test_fixture.h>
|
|
|
|
WalletTestingSetup::WalletTestingSetup(const std::string& chainName)
|
|
: TestingSetup(chainName),
|
|
m_wallet(m_chain.get(), "", CreateMockWalletDatabase())
|
|
{
|
|
bool fFirstRun;
|
|
m_wallet.LoadWallet(fFirstRun);
|
|
m_chain_notifications_handler = m_chain->handleNotifications({ &m_wallet, [](CWallet*) {} });
|
|
m_wallet_client->registerRpcs();
|
|
}
|