mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 21:04:32 +00:00
Number comparison should be float
This commit is contained in:
parent
47dc499413
commit
86746a1563
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ Rectangle {
|
|||
}
|
||||
|
||||
// There are sufficient unlocked funds available
|
||||
if(parseInt(amountLine.text) > parseInt(unlockedBalanceText)){
|
||||
if(parseFloat(amountLine.text) > parseFloat(unlockedBalanceText)){
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue