aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorJannis Froese <[email protected]>2014-03-29 22:14:05 +0100
committerJannis Froese <[email protected]>2014-03-29 22:14:05 +0100
commit9449d42332b450733298723b47df343a571e4f6b (patch)
tree6a878dc78fd8d18da6b29390395451090294cbe3 /src/init.cpp
parentMerge pull request #382 from leofidus/1.7-blockchainsize (diff)
downloaddiscoin-9449d42332b450733298723b47df343a571e4f6b.tar.xz
discoin-9449d42332b450733298723b47df343a571e4f6b.zip
warning and documentation changes to match dogecoin fees
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index f3d761bf4..000507c33 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -555,7 +555,7 @@ bool AppInit2(boost::thread_group& threadGroup)
{
if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"]));
- if (nTransactionFee > 0.25 * COIN)
+ if (nTransactionFee > 25 * COIN)
InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
}
bSpendZeroConfChange = GetArg("-spendzeroconfchange", true);