From 0b1b38a85e6c0e52b06c90892c9e0784fb6b71f3 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Sun, 9 Feb 2020 20:21:24 +0100 Subject: [PATCH] utxo money format changed to brief --- src/wallet/wallet_rpc_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index c17d8183..6d3987da 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -199,7 +199,7 @@ namespace tools std::map distribution; m_wallet.get_utxo_distribution(distribution); for (const auto& ent : distribution) - res.utxo_distribution.push_back(currency::print_money(ent.first) + ":" + std::to_string(ent.second)); + res.utxo_distribution.push_back(currency::print_money_brief(ent.first) + ":" + std::to_string(ent.second)); return true; }