fix(@wallet): sending big number

fixes #12497
This commit is contained in:
Anthony Laibe 2023-10-25 10:36:55 +02:00
parent 6046e781f1
commit 466b57a536
1 changed files with 2 additions and 1 deletions

View File

@ -61,7 +61,8 @@ QtObject {
}
function suggestedRoutes(amount) {
walletSectionSendInst.suggestedRoutes(amount)
const value = AmountsArithmetic.fromNumber(amount)
walletSectionSendInst.suggestedRoutes(value.toFixed())
}
function resolveENS(value) {