From 2f6eb372d4def0d8cafc59e104bb43897e3cd974 Mon Sep 17 00:00:00 2001 From: AlphaX-Projects <77661270+AlphaX-Projects@users.noreply.github.com> Date: Sat, 27 Aug 2022 15:06:25 +0200 Subject: [PATCH] Fix ARRR fee --- qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js index ae817975..00642144 100644 --- a/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js +++ b/qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js @@ -3758,11 +3758,11 @@ class MultiWallet extends LitElement { } calculateArrrAll() { - if (this.balance < 0.00000002) { + if (this.balance < 0.00010000) { let not_enough_string = get("walletpage.wchange26") parentEpml.request('showSnackBar', `${not_enough_string}`) } else { - this.arrrAmount = (this.balance - 0.00000001).toFixed(8) + this.arrrAmount = (this.balance - 0.00010000).toFixed(8) } }