diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-06-04 14:43:02 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-06-06 09:30:41 +0200 |
commit | a04bdefbebf9c6eee12712ccf8ef0b20e993da4a (patch) | |
tree | 7ee330d97d0d87ff19ed58f45c55e2754760cdb5 /src/rpcserver.cpp | |
parent | 4b4b9a8de662e6327f78aaf04a1e83d45713c06a (diff) |
Get rid of fPlus argument to FormatMoney
It's never used with any other value than false, the default.
Diffstat (limited to 'src/rpcserver.cpp')
-rw-r--r-- | src/rpcserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 11312ff63e..3894dd08bb 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -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) |