aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/bdb.h
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2023-07-06 18:18:33 +0000
committerCory Fields <cory-nospam-@coryfields.com>2023-07-06 20:16:53 +0000
commit43369f37060a1b4c987672707c500d35c9a27c1d (patch)
tree9fb8bb6f00ce699e6cd79a84b7771532d7ad3f59 /src/wallet/bdb.h
parentc325f0fbae2d6472a78be733d499783f8b69d6b8 (diff)
downloadbitcoin-43369f37060a1b4c987672707c500d35c9a27c1d.tar.xz
wallet: bdb: drop default parameter
Diffstat (limited to 'src/wallet/bdb.h')
-rw-r--r--src/wallet/bdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/bdb.h b/src/wallet/bdb.h
index 1073d32e0f..e10ebbbdfd 100644
--- a/src/wallet/bdb.h
+++ b/src/wallet/bdb.h
@@ -67,7 +67,7 @@ public:
void CloseDb(const fs::path& filename);
void ReloadDbEnv();
- DbTxn* TxnBegin(int flags = DB_TXN_WRITE_NOSYNC)
+ DbTxn* TxnBegin(int flags)
{
DbTxn* ptxn = nullptr;
int ret = dbenv->txn_begin(nullptr, &ptxn, flags);