forked from Public/monero-gui
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:
@@ -33,7 +33,7 @@ import "../components"
|
||||
|
||||
Rectangle {
|
||||
id: root
|
||||
signal paymentClicked(string address, string paymentId, double amount, int mixinCount,
|
||||
signal paymentClicked(string address, string paymentId, string amount, int mixinCount,
|
||||
int priority, string description)
|
||||
|
||||
color: "#F0EEEE"
|
||||
|
||||
Reference in New Issue
Block a user