diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-01-04 18:55:24 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-01-07 12:09:30 +0100 |
commit | fac11ea3106ff29ec884dfe9d9b287fd1beda5fc (patch) | |
tree | 49a3e79b03bcffb5093d9bfae14e04b67e46f856 /src/init.cpp | |
parent | 7b0a9a80400495e263c779d6ddd6c33641f27716 (diff) |
[init] Fix error message of maxtxfee invalid amount
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 3b17e11231..3798709546 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -975,7 +975,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) { CAmount nMaxFee = 0; if (!ParseMoney(mapArgs["-maxtxfee"], nMaxFee)) - return InitError(AmountErrMsg("maxtxfee", mapArgs["-maptxfee"])); + return InitError(AmountErrMsg("maxtxfee", mapArgs["-maxtxfee"])); if (nMaxFee > nHighTransactionMaxFeeWarning) InitWarning(_("-maxtxfee is set very high! Fees this large could be paid on a single transaction.")); maxTxFee = nMaxFee; |