Skip to content

Commit fac11ea

Browse files
author
MarcoFalke
committed
[init] Fix error message of maxtxfee invalid amount
1 parent 7b0a9a8 commit fac11ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
975975
{
976976
CAmount nMaxFee = 0;
977977
if (!ParseMoney(mapArgs["-maxtxfee"], nMaxFee))
978-
return InitError(AmountErrMsg("maxtxfee", mapArgs["-maptxfee"]));
978+
return InitError(AmountErrMsg("maxtxfee", mapArgs["-maxtxfee"]));
979979
if (nMaxFee > nHighTransactionMaxFeeWarning)
980980
InitWarning(_("-maxtxfee is set very high! Fees this large could be paid on a single transaction."));
981981
maxTxFee = nMaxFee;

0 commit comments

Comments
 (0)