diff options
| author | Cozz Lovan <[email protected]> | 2014-08-31 05:55:27 +0200 |
|---|---|---|
| committer | Cozz Lovan <[email protected]> | 2014-10-03 05:11:27 +0200 |
| commit | 44bc988e7becb492a78ed92ea1052f4789012534 (patch) | |
| tree | e7ce5489c4f331b71bc55c24cfcd89393097f069 /src/walletdb.h | |
| parent | Merge pull request #4994 (diff) | |
| download | discoin-44bc988e7becb492a78ed92ea1052f4789012534.tar.xz discoin-44bc988e7becb492a78ed92ea1052f4789012534.zip | |
[Wallet] Do not flush the wallet in AddToWalletIfInvolvingMe(..)
Diffstat (limited to 'src/walletdb.h')
| -rw-r--r-- | src/walletdb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/walletdb.h b/src/walletdb.h index f3d6e61f8..590d63e33 100644 --- a/src/walletdb.h +++ b/src/walletdb.h @@ -76,7 +76,7 @@ public: class CWalletDB : public CDB { public: - CWalletDB(const std::string& strFilename, const char* pszMode = "r+") : CDB(strFilename, pszMode) + CWalletDB(const std::string& strFilename, const char* pszMode = "r+", bool fFlushOnClose = true) : CDB(strFilename, pszMode, fFlushOnClose) { } |