diff options
| author | chromatic <[email protected]> | 2021-08-22 12:33:29 -0700 |
|---|---|---|
| committer | chromatic <[email protected]> | 2021-08-22 12:36:23 -0700 |
| commit | d8643a4129a2b0497744d31bdaaeffbc363e2f55 (patch) | |
| tree | 5a6d9794dec56c2c3555adceb3448619c5d87fa6 /src/wallet | |
| parent | Add explicit braces to avoid ambiguous else (diff) | |
| download | discoin-d8643a4129a2b0497744d31bdaaeffbc363e2f55.tar.xz discoin-d8643a4129a2b0497744d31bdaaeffbc363e2f55.zip | |
Fix variable name; otherwise interpreted as label
Diffstat (limited to 'src/wallet')
| -rw-r--r-- | src/wallet/wallet.cpp | 2 |
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")) |