aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorchromatic <[email protected]>2021-08-22 12:33:29 -0700
committerchromatic <[email protected]>2021-08-22 12:36:23 -0700
commitd8643a4129a2b0497744d31bdaaeffbc363e2f55 (patch)
tree5a6d9794dec56c2c3555adceb3448619c5d87fa6 /src/wallet
parentAdd explicit braces to avoid ambiguous else (diff)
downloaddiscoin-d8643a4129a2b0497744d31bdaaeffbc363e2f55.tar.xz
discoin-d8643a4129a2b0497744d31bdaaeffbc363e2f55.zip
Fix variable name; otherwise interpreted as label
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
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"))