diff options
author | Ali Sherief <ali@notatether.com> | 2022-08-21 20:54:14 +0000 |
---|---|---|
committer | Ali Sherief <ali@notatether.com> | 2022-08-25 17:58:19 +0000 |
commit | 835bd27e9a0dd627f266e3dc0a7422d8d0612eff (patch) | |
tree | 6d2588ac02e2fe57437c485854f51a132fa6eaaf /src | |
parent | ba2edcae7321d6f8dc4aad4acbbd2d3b5e846f5f (diff) |
Wallet::SetMinVersion - Log the new minversion
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet.cpp | 1 |
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; { |