From 070c685e0adb538626c49232cc7dd0086617d059 Mon Sep 17 00:00:00 2001 From: "Ola [AHLNET]" Date: Tue, 28 Nov 2023 09:02:54 +0100 Subject: [PATCH] Fix for op cert if glv is started before node is ready in core mode. (#1713) ## Description Minor fix for opcert to re-run check if node goes from relay to core mode on startup. --- scripts/cnode-helper-scripts/gLiveView.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cnode-helper-scripts/gLiveView.sh b/scripts/cnode-helper-scripts/gLiveView.sh index 4b5927830..1c82d628e 100755 --- a/scripts/cnode-helper-scripts/gLiveView.sh +++ b/scripts/cnode-helper-scripts/gLiveView.sh @@ -59,7 +59,7 @@ setTheme() { # Do NOT modify code below # ###################################### -GLV_VERSION=v1.28.1 +GLV_VERSION=v1.28.2 PARENT="$(dirname $0)" @@ -823,7 +823,7 @@ while true; do cpu_util="0.0" fi if [[ ${about_to_lead} -gt 0 ]]; then - [[ ${nodemode} != "Core" ]] && clrScreen && nodemode="Core" + [[ ${nodemode} != "Core" ]] && nodemode="Core" && getOpCert && clrScreen else [[ ${nodemode} != "Relay" ]] && clrScreen && nodemode="Relay" fi