From 44bc988e7becb492a78ed92ea1052f4789012534 Mon Sep 17 00:00:00 2001 From: Cozz Lovan Date: Sun, 31 Aug 2014 05:55:27 +0200 Subject: [Wallet] Do not flush the wallet in AddToWalletIfInvolvingMe(..) --- src/walletdb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/walletdb.h') diff --git a/src/walletdb.h b/src/walletdb.h index f3d6e61f8b..590d63e333 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) { } -- cgit v1.2.3