diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-08-01 10:56:17 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@exmulti.com> | 2012-08-01 10:56:17 -0700 |
commit | ffe47d6d5d6ddfc0ad145f5a891e2165c3d69009 (patch) | |
tree | c30d30baadfa02be183b40535d3bf43d2701f60b /src/init.cpp | |
parent | 0f460644e36196cd597e02281a0d0c90abc844e2 (diff) | |
parent | e6bc9c35f3518760800be47ec0b061fd508c8175 (diff) |
Merge pull request #1636 from Diapolo/Warning_string
Update Warning-strings to use a standard-format
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 a07d011374..c8e0437d26 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -417,7 +417,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) - InitWarning(_("Warning: -paytxfee is set very high. This is the transaction fee you will pay if you send a transaction.")); + InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction.")); } // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log |