From d0c452484f74a12bb1c35aa2d79b9661ce337551 Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 16 Jul 2018 18:05:39 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../main/java/com/tangem/domain/wallet/BalanceValidator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/tangem/domain/wallet/BalanceValidator.java b/app/src/main/java/com/tangem/domain/wallet/BalanceValidator.java index faa6870f40..89591c6d47 100644 --- a/app/src/main/java/com/tangem/domain/wallet/BalanceValidator.java +++ b/app/src/main/java/com/tangem/domain/wallet/BalanceValidator.java @@ -58,7 +58,7 @@ public class BalanceValidator { } if(card.getFailedBalanceRequestCounter()!=0) { - score = 100 - 10 * card.getFailedBalanceRequestCounter(); + score = 100 - 5 * card.getFailedBalanceRequestCounter(); firstLine = "Verified balance."; secondLine += " Not all nodes have returned balance. App is requesting more nodes to be 100% sure..."; if(score <= 0) @@ -117,7 +117,7 @@ public class BalanceValidator { { score = -50; String firstLine = "Unguaranted balance."; - secondLine = " Loading in progress. Wait for full confirmation in blockchain."; + secondLine += " Loading in progress. Wait for full confirmation in blockchain."; if(score <= 0) return; }