From: svost Date: Wed, 12 Oct 2016 11:53:02 +0000 (+0300) Subject: No more boost format function in code X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=764d636699d75016fba30441b5e3bc7058ebc680 No more boost format function in code --- diff --git a/src/init.cpp b/src/init.cpp index 5117dd5..90bf8de 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -11,7 +11,6 @@ #include "ipcollector.h" #include "ui_interface.h" #include "checkpoints.h" -#include #include #include #include @@ -269,7 +268,7 @@ std::string HelpMessage() #endif " -paytxfee= " + _("Fee per KB to add to transactions you send") + "\n" + - " -mininput= " + str(boost::format(_("When creating transactions, ignore inputs with value less than this (default: %s)")) % FormatMoney(MIN_TXOUT_AMOUNT)) + "\n" + + " -mininput= " + ((string)("When creating transactions, ignore inputs with value less than this (default: ") + FormatMoney(MIN_TXOUT_AMOUNT) + ")") + "\n" + #ifdef QT_GUI " -server " + _("Accept command line and JSON-RPC commands") + "\n" + #endif