diff options
| author | João Barbosa <[email protected]> | 2018-09-28 16:50:18 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2018-10-25 12:33:26 +0100 |
| commit | 65f3672f3b82a6fa30e5171f85bc8d8a29e0797e (patch) | |
| tree | 5720ff98218142d22cd4ac3073da74e5927e3729 /src/bench/coin_selection.cpp | |
| parent | wallet: Add WalletLocation utility class (diff) | |
| download | discoin-65f3672f3b82a6fa30e5171f85bc8d8a29e0797e.tar.xz discoin-65f3672f3b82a6fa30e5171f85bc8d8a29e0797e.zip | |
wallet: Refactor to use WalletLocation
Diffstat (limited to 'src/bench/coin_selection.cpp')
| -rw-r--r-- | src/bench/coin_selection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bench/coin_selection.cpp b/src/bench/coin_selection.cpp index 27c23d683..decdadfb2 100644 --- a/src/bench/coin_selection.cpp +++ b/src/bench/coin_selection.cpp @@ -33,7 +33,7 @@ static void addCoin(const CAmount& nValue, const CWallet& wallet, std::vector<Ou // (https://github.com/bitcoin/bitcoin/issues/7883#issuecomment-224807484) static void CoinSelection(benchmark::State& state) { - const CWallet wallet("dummy", WalletDatabase::CreateDummy()); + const CWallet wallet(WalletLocation(), WalletDatabase::CreateDummy()); LOCK(wallet.cs_wallet); // Add coins. @@ -57,7 +57,7 @@ static void CoinSelection(benchmark::State& state) } typedef std::set<CInputCoin> CoinSet; -static const CWallet testWallet("dummy", WalletDatabase::CreateDummy()); +static const CWallet testWallet(WalletLocation(), WalletDatabase::CreateDummy()); std::vector<std::unique_ptr<CWalletTx>> wtxn; // Copied from src/wallet/test/coinselector_tests.cpp |