Fix variable name; otherwise interpreted as label

This commit is contained in:
chromatic 2021-08-22 12:33:29 -07:00
parent a9a5736df8
commit d8643a4129

View file

@ -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"))