Reject invalid wallet files
[bitcoinplatinum.git] / src / wallet / test / wallet_test_fixture.h
blob97a6d98397accb8711f5076201840e99ed013bc0
1 // Copyright (c) 2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_WALLET_TEST_FIXTURE_H
6 #define BITCOIN_WALLET_TEST_FIXTURE_H
8 #include "test/test_bitcoin.h"
10 /** Testing setup and teardown for wallet.
12 struct WalletTestingSetup: public TestingSetup {
13 WalletTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
14 ~WalletTestingSetup();
17 #endif