Merge pull request #3837
18761b37
simplewallet: use correct unit for fee command (stoffu)
This commit is contained in:
commit
4dae04dde2
|
@ -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 per_kb_fee = m_wallet->get_per_kb_fee();
|
||||||
const uint64_t typical_size_kb = 13;
|
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;
|
std::vector<uint64_t> fees;
|
||||||
for (uint32_t priority = 1; priority <= 4; ++priority)
|
for (uint32_t priority = 1; priority <= 4; ++priority)
|
||||||
|
|
Loading…
Reference in New Issue