mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 06:43:45 +01:00
Get rid of fPlus argument to FormatMoney
It's never used with any other value than false, the default.
This commit is contained in:
@@ -133,7 +133,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)
|
||||
|
||||
Reference in New Issue
Block a user