mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-10 14:17:25 -04:00
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.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user