diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-05-21 20:57:07 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-05-21 20:57:07 +0200 |
commit | 4dae04dde2dd822a39337119ca0920025b4657f4 (patch) | |
tree | 43063c7017febee4e73c27f41ba9d8ded78d9d7c /src | |
parent | Merge pull request #3745 (diff) | |
parent | simplewallet: use correct unit for fee command (diff) | |
download | monero-4dae04dde2dd822a39337119ca0920025b4657f4.tar.xz |
Merge pull request #3837
18761b37 simplewallet: use correct unit for fee command (stoffu)
Diffstat (limited to 'src')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 639b394f3..d573f317b 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -759,7 +759,7 @@ bool simple_wallet::print_fee_info(const std::vector<std::string> &args/* = std: } const uint64_t per_kb_fee = m_wallet->get_per_kb_fee(); const uint64_t typical_size_kb = 13; - message_writer() << (boost::format(tr("Current fee is %s monero per kB")) % print_money(per_kb_fee)).str(); + message_writer() << (boost::format(tr("Current fee is %s %s per kB")) % print_money(per_kb_fee) % cryptonote::get_unit(cryptonote::get_default_decimal_point())).str(); std::vector<uint64_t> fees; for (uint32_t priority = 1; priority <= 4; ++priority) |