diff --git a/main.qml b/main.qml index 1458b5ce..1ee60881 100644 --- a/main.qml +++ b/main.qml @@ -880,12 +880,11 @@ ApplicationWindow { informationPopup.text = qsTr("Bad signature"); informationPopup.icon = StandardIcon.Critical; } else if (received > 0) { - received = received / 1e12 if (in_pool) { - informationPopup.text = qsTr("This address received %1 monero, but the transaction is not yet mined").arg(received); + informationPopup.text = qsTr("This address received %1 monero, but the transaction is not yet mined").arg(walletManager.displayAmount(received)); } else { - informationPopup.text = qsTr("This address received %1 monero, with %2 confirmation(s).").arg(received).arg(confirmations); + informationPopup.text = qsTr("This address received %1 monero, with %2 confirmation(s).").arg(walletManager.displayAmount(received)).arg(confirmations); } } else {