diff options
| author | dogecoin <[email protected]> | 2013-12-25 22:35:09 -0800 |
|---|---|---|
| committer | dogecoin <[email protected]> | 2013-12-25 22:35:09 -0800 |
| commit | 2ee5cb3396df66c10fef34480a183d00e3bec635 (patch) | |
| tree | 0413f70607f4257c5c39ba4dfb7208e18ab8d10a /src/init.cpp | |
| parent | Merge pull request #49 from siavashg/master (diff) | |
| parent | add v1.3 graphic (diff) | |
| download | archived-discoin-1.4alpha.tar.xz archived-discoin-1.4alpha.zip | |
Fix dust issue
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 b358734f4..45bf9f7ff 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -415,7 +415,7 @@ bool AppInit2() { if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee)) return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"].c_str())); - if (nTransactionFee > 0.25 * COIN) + if (nTransactionFee > 25.0 * COIN) InitWarning(_("Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction.")); } |