diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-01-09 17:52:26 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-01-09 17:52:26 -0600 |
| commit | 36eb1f80e1c070f753746519e2c9e4f01784f6c2 (patch) | |
| tree | 55eca196d0e3d03da493f6296a64c733d468d01c | |
| parent | dc7a95c8d18d39268f1bc8d87701bfba90a91bbf (diff) | |
| parent | 8022db34c641a88410ca6f22715be8a955fe110b (diff) | |
| download | monzero-gui-36eb1f80e1c070f753746519e2c9e4f01784f6c2.tar.gz monzero-gui-36eb1f80e1c070f753746519e2c9e4f01784f6c2.tar.xz monzero-gui-36eb1f80e1c070f753746519e2c9e4f01784f6c2.zip | |
Merge pull request #1890
8022db3 Proof: don't round amounts received (selsta)
| -rw-r--r-- | main.qml | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 { |
