aboutsummaryrefslogtreecommitdiff
path: root/MiddlePanel.qml
diff options
context:
space:
mode:
authormoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-06 12:33:17 +0000
committermoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-09 18:58:34 +0000
commit12f2a2b6e089332cc46cb1d3c0f62ed734c527a8 (patch)
tree47dad22cd56b4098a5ff8a1e14d56b09ef7ced4b /MiddlePanel.qml
parent68736ab834533db50cb5eaebf9a751ad0f2fa5a6 (diff)
downloadmonzero-gui-12f2a2b6e089332cc46cb1d3c0f62ed734c527a8.tar.gz
monzero-gui-12f2a2b6e089332cc46cb1d3c0f62ed734c527a8.tar.xz
monzero-gui-12f2a2b6e089332cc46cb1d3c0f62ed734c527a8.zip
Fix small amounts from being conflated with zero
Something like 0.000000000012 was converted to 1.2e-11 by the conversion to double, and that was rejected by the Cryptonote parser.
Diffstat (limited to 'MiddlePanel.qml')
-rw-r--r--MiddlePanel.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml
index f1254760..1d1b86e6 100644
--- a/MiddlePanel.qml
+++ b/MiddlePanel.qml
@@ -50,7 +50,7 @@ Rectangle {
property Settings settingsView: Settings { }
- signal paymentClicked(string address, string paymentId, double amount, int mixinCount, int priority, string description)
+ signal paymentClicked(string address, string paymentId, string amount, int mixinCount, int priority, string description)
signal generatePaymentIdInvoked()
signal checkPaymentClicked(string address, string txid, string txkey);