mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #823
a687e6e
simplewallet: fix pending transfers fee display in show_transfers (moneromooo-monero)
This commit is contained in:
commit
bdb93cbf3d
1 changed files with 1 additions and 1 deletions
|
@ -3080,7 +3080,7 @@ bool simple_wallet::show_transfers(const std::vector<std::string> &args_)
|
||||||
std::string note = m_wallet->get_tx_note(i->first);
|
std::string note = m_wallet->get_tx_note(i->first);
|
||||||
bool is_failed = pd.m_state == tools::wallet2::unconfirmed_transfer_details::failed;
|
bool is_failed = pd.m_state == tools::wallet2::unconfirmed_transfer_details::failed;
|
||||||
if ((failed && is_failed) || (!is_failed && pending)) {
|
if ((failed && is_failed) || (!is_failed && pending)) {
|
||||||
message_writer() << (boost::format("%8.8s %6.6s %16.16s %20.20s %s %s %14.14s %s") % (is_failed ? tr("failed") : tr("pending")) % tr("out") % get_human_readable_timestamp(pd.m_timestamp) % print_money(amount - pd.m_change) % string_tools::pod_to_hex(i->first) % payment_id % print_money(fee) % note).str();
|
message_writer() << (boost::format("%8.8s %6.6s %16.16s %20.20s %s %s %14.14s %s") % (is_failed ? tr("failed") : tr("pending")) % tr("out") % get_human_readable_timestamp(pd.m_timestamp) % print_money(amount - pd.m_change - fee) % string_tools::pod_to_hex(i->first) % payment_id % print_money(fee) % note).str();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue