Fix formating of money strings.

This commit is contained in:
Kris Nuttycombe 2023-04-17 19:53:06 -06:00
parent e566955acb
commit f177deaa37
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ std::string FormatMoney(const CAmount& n)
std::string DisplayMoney(const CAmount& zat) std::string DisplayMoney(const CAmount& zat)
{ {
return CURRENCY_UNIT + " " + FormatMoney(zat); return FormatMoney(zat) + " " + CURRENCY_UNIT;
} }
bool ParseMoney(const string& str, CAmount& nRet) bool ParseMoney(const string& str, CAmount& nRet)