Get rid of fPlus argument to FormatMoney

It's never used with any other value than false, the default.
This commit is contained in:
Wladimir J. van der Laan
2015-06-04 14:43:02 +02:00
committed by Jack Grigg
parent c66dff3dc7
commit a5beb3a51b
4 changed files with 23 additions and 27 deletions

View File

@@ -136,7 +136,7 @@ CAmount AmountFromValue(const UniValue& value)
UniValue ValueFromAmount(const CAmount& amount)
{
return UniValue(UniValue::VREAL, FormatMoney(amount, false));
return UniValue(UniValue::VREAL, FormatMoney(amount));
}
uint256 ParseHashV(const UniValue& v, string strName)