mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-30 13:07:32 -03:00
fad7c33342
Further stylistic cleanups in touched files: * Sort the includes * Wrap long single-line constructors into multiple lines
20 lines
630 B
C++
20 lines
630 B
C++
// Copyright (c) 2016-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.
|
|
|
|
#include <wallet/test/wallet_test_fixture.h>
|
|
|
|
#include <rpc/server.h>
|
|
#include <wallet/db.h>
|
|
#include <wallet/rpcwallet.h>
|
|
|
|
WalletTestingSetup::WalletTestingSetup(const std::string& chainName)
|
|
: TestingSetup(chainName),
|
|
m_wallet(m_chain.get(), WalletLocation(), WalletDatabase::CreateMock())
|
|
{
|
|
bool fFirstRun;
|
|
m_wallet.LoadWallet(fFirstRun);
|
|
m_wallet.handleNotifications();
|
|
|
|
m_chain_client->registerRpcs();
|
|
}
|