diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index f96e6d9e..c17d8183 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(std::to_string(ent.first) + ":" + std::to_string(ent.second)); + res.utxo_distribution.push_back(currency::print_money(ent.first) + ":" + std::to_string(ent.second)); return true; }