diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-06 12:33:17 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-09 18:58:34 +0000 |
| commit | 12f2a2b6e089332cc46cb1d3c0f62ed734c527a8 (patch) | |
| tree | 47dad22cd56b4098a5ff8a1e14d56b09ef7ced4b /MiddlePanel.qml | |
| parent | 68736ab834533db50cb5eaebf9a751ad0f2fa5a6 (diff) | |
| download | monzero-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.qml | 2 |
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); |
