From 82e85033dfc5af9dc9d7270968c1f2af2730a761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20Salgado?= Date: Tue, 16 Feb 2021 18:07:23 +0000 Subject: [PATCH] fix: ETH balance --- lib/plugins/wallet/geth/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/wallet/geth/base.js b/lib/plugins/wallet/geth/base.js index 5d2ae84b..0aabacb8 100644 --- a/lib/plugins/wallet/geth/base.js +++ b/lib/plugins/wallet/geth/base.js @@ -68,7 +68,7 @@ function checkCryptoCode (cryptoCode) { function balance (account, cryptoCode) { return checkCryptoCode(cryptoCode) - .then(() => pendingBalance(defaultAddress(account))) + .then(() => confirmedBalance(defaultAddress(account))) } const pendingBalance = address => {