diff options
| author | Russell Yanofsky <[email protected]> | 2017-11-13 21:25:46 -0500 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2018-03-03 10:26:55 -0500 |
| commit | d8a99f65e53019becdd8d2631396012bafb29741 (patch) | |
| tree | 7e873886811beddc9bca0c21d21d3c6fc0d7ede3 /src/bench/coin_selection.cpp | |
| parent | Merge #12582: Fix ListCoins test failure due to unset g_wallet_allow_fallback... (diff) | |
| download | discoin-d8a99f65e53019becdd8d2631396012bafb29741.tar.xz discoin-d8a99f65e53019becdd8d2631396012bafb29741.zip | |
Allow wallet files in multiple directories
Remove requirement that two wallet files can only be opened at the same time if
they are contained in the same directory.
This change mostly consists of updates to function signatures (updating
functions to take fs::path arguments, instead of combinations of strings,
fs::path, and CDBEnv / CWalletDBWrapper arguments).
Diffstat (limited to 'src/bench/coin_selection.cpp')
| -rw-r--r-- | src/bench/coin_selection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/coin_selection.cpp b/src/bench/coin_selection.cpp index 6f438b60e..98965840c 100644 --- a/src/bench/coin_selection.cpp +++ b/src/bench/coin_selection.cpp @@ -32,7 +32,7 @@ static void addCoin(const CAmount& nValue, const CWallet& wallet, std::vector<CO // (https://github.com/bitcoin/bitcoin/issues/7883#issuecomment-224807484) static void CoinSelection(benchmark::State& state) { - const CWallet wallet; + const CWallet wallet("dummy", CWalletDBWrapper::CreateDummy()); std::vector<COutput> vCoins; LOCK(wallet.cs_wallet); |