From d8643a4129a2b0497744d31bdaaeffbc363e2f55 Mon Sep 17 00:00:00 2001 From: chromatic Date: Sun, 22 Aug 2021 12:33:29 -0700 Subject: [PATCH] Fix variable name; otherwise interpreted as label --- src/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index fa8526686..c60b2a3f2 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3904,7 +3904,7 @@ bool CWallet::ParameterInteraction() if (!IsArgSet("-mintxfee") && payTxFee < CWallet::minTxFee) { LogPrintf("%s: parameter interaction: -paytxfee=%s -> setting -mintxfee=%s\n", __func__, GetArg("-paytxfee",""), GetArg("-paytxfee","")); - CWallet:minTxFee = CFeeRate(nFeePerK,1000); + CWallet::minTxFee = CFeeRate(nFeePerK,1000); } } if (IsArgSet("-maxtxfee"))