From b139a81e20b0e1d7e184bf0f48125b32ab47bb22 Mon Sep 17 00:00:00 2001 From: Alain Brenzikofer Date: Thu, 7 Nov 2024 08:07:40 +0100 Subject: [PATCH 1/2] relax health requirements --- store/systemHealth.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/store/systemHealth.ts b/store/systemHealth.ts index 1473f52..7dd221f 100644 --- a/store/systemHealth.ts +++ b/store/systemHealth.ts @@ -86,11 +86,11 @@ export const useSystemHealth = defineStore("system-health", { shieldingTargetLastBlockNumber?.value - shieldingTargetImportedBlockNumber?.value; let importHealth; - if (lag < 5) { + if (lag <= 6) { importHealth = Health.Healthy; - } else if (lag < 10) { + } else if (lag < 12) { importHealth = Health.Warning; - } else if (lag >= 10) { + } else if (lag >= 12) { importHealth = Health.Critical; } else { importHealth = Health.Unknown; From ebce9760f8e6f75198ce39576e0a50db9c327e31 Mon Sep 17 00:00:00 2001 From: Alain Brenzikofer Date: Thu, 7 Nov 2024 08:36:52 +0100 Subject: [PATCH 2/2] fix balance poll if extension account select is aborted --- components/ui/ChooseWalletOverlay.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/components/ui/ChooseWalletOverlay.vue b/components/ui/ChooseWalletOverlay.vue index 5d1afb4..ec4612d 100644 --- a/components/ui/ChooseWalletOverlay.vue +++ b/components/ui/ChooseWalletOverlay.vue @@ -1,5 +1,5 @@