mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
Merge pull request #1890
8022db3
Proof: don't round amounts received (selsta)
This commit is contained in:
commit
36eb1f80e1
1 changed files with 2 additions and 3 deletions
5
main.qml
5
main.qml
|
@ -880,12 +880,11 @@ ApplicationWindow {
|
||||||
informationPopup.text = qsTr("Bad signature");
|
informationPopup.text = qsTr("Bad signature");
|
||||||
informationPopup.icon = StandardIcon.Critical;
|
informationPopup.icon = StandardIcon.Critical;
|
||||||
} else if (received > 0) {
|
} else if (received > 0) {
|
||||||
received = received / 1e12
|
|
||||||
if (in_pool) {
|
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 {
|
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 {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue