aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorAli Sherief <ali@notatether.com>2022-08-21 20:54:14 +0000
committerAli Sherief <ali@notatether.com>2022-08-25 17:58:19 +0000
commit835bd27e9a0dd627f266e3dc0a7422d8d0612eff (patch)
tree6d2588ac02e2fe57437c485854f51a132fa6eaaf /src/wallet/wallet.cpp
parentba2edcae7321d6f8dc4aad4acbbd2d3b5e846f5f (diff)
downloadbitcoin-835bd27e9a0dd627f266e3dc0a7422d8d0612eff.tar.xz
Wallet::SetMinVersion - Log the new minversion
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 3d989d90f8..69a151d5c8 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -542,6 +542,7 @@ void CWallet::SetMinVersion(enum WalletFeature nVersion, WalletBatch* batch_in)
LOCK(cs_wallet);
if (nWalletVersion >= nVersion)
return;
+ WalletLogPrintf("Setting minversion to %d\n", nVersion);
nWalletVersion = nVersion;
{