diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-09-28 16:50:18 +0100 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-10-25 12:33:26 +0100 |
commit | 65f3672f3b82a6fa30e5171f85bc8d8a29e0797e (patch) | |
tree | 5720ff98218142d22cd4ac3073da74e5927e3729 /src/wallet/test/wallet_test_fixture.cpp | |
parent | 01a4c095c87500650663341533f000c6b613e9da (diff) |
wallet: Refactor to use WalletLocation
Diffstat (limited to 'src/wallet/test/wallet_test_fixture.cpp')
-rw-r--r-- | src/wallet/test/wallet_test_fixture.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/test/wallet_test_fixture.cpp b/src/wallet/test/wallet_test_fixture.cpp index de59b60349..d42209ab15 100644 --- a/src/wallet/test/wallet_test_fixture.cpp +++ b/src/wallet/test/wallet_test_fixture.cpp @@ -6,9 +6,10 @@ #include <rpc/server.h> #include <wallet/db.h> +#include <wallet/rpcwallet.h> WalletTestingSetup::WalletTestingSetup(const std::string& chainName): - TestingSetup(chainName), m_wallet("mock", WalletDatabase::CreateMock()) + TestingSetup(chainName), m_wallet(WalletLocation(), WalletDatabase::CreateMock()) { bool fFirstRun; m_wallet.LoadWallet(fFirstRun); |