Skip to content

Commit

Permalink
Merge pull request monero-project#3837
Browse files Browse the repository at this point in the history
18761b3 simplewallet: use correct unit for fee command (stoffu)
  • Loading branch information
fluffypony committed May 21, 2018
2 parents d6cefbd + 18761b3 commit 4dae04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simplewallet/simplewallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4dae04d

Please sign in to comment.