diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-03-08 13:34:47 +0000 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2017-04-20 17:15:31 +0200 |
commit | be9e1a968debbb7ede8ed50e9288a62ff15d1e1e (patch) | |
tree | 48f4136d2e6cedfba9b2a00b114e96ef6e034ebe /src/wallet/wallet.cpp | |
parent | 071c95570b8e2ee5c2a4aed8b86b9b14f8e75578 (diff) |
wallet: Reduce references to global bitdb environment
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index a9d5d02c07..cafb6dda11 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -431,7 +431,7 @@ bool CWallet::HasWalletSpend(const uint256& txid) const void CWallet::Flush(bool shutdown) { - bitdb.Flush(shutdown); + dbw->Flush(shutdown); } bool CWallet::Verify() |