mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-09 12:29:44 +00:00
TxInfoDialog: fix amount string
This commit is contained in:
parent
2d267994ef
commit
89fd3cf27c
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ void TransactionInfoDialog::setData(TransactionInfo* tx) {
|
|||
}
|
||||
|
||||
QString direction = tx->direction() == TransactionInfo::Direction_In ? "received" : "sent";
|
||||
ui->label_amount->setText(QString("Amount %1: %2").arg(direction, tx->displayAmount()));
|
||||
ui->label_amount->setText(QString("Amount %1: %2 XMR").arg(direction, tx->displayAmount()));
|
||||
|
||||
QString fee;
|
||||
if (tx->isCoinbase())
|
||||
|
|
Loading…
Reference in a new issue