From f493668bd5af77ddd7ffa1a877146d729865bd9d Mon Sep 17 00:00:00 2001 From: kaotisk Date: Mon, 24 Jun 2024 01:26:03 +0300 Subject: Refactoring --- bin/ak-find-latest-mined-sblock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/ak-find-latest-mined-sblock') diff --git a/bin/ak-find-latest-mined-sblock b/bin/ak-find-latest-mined-sblock index effe1bb..74fa919 100755 --- a/bin/ak-find-latest-mined-sblock +++ b/bin/ak-find-latest-mined-sblock @@ -21,12 +21,12 @@ further(){ lookfor(){ echo -n $1 | grep -e '[0-9a-f]\{128\}' > /dev/null - if [ ! $? = 0 ] + if [ $? -ne 0 ] then _ak_log_error "Oops!!! The argument passed, does not match the regular expression!" else counters[$CHAIN_PARENT]="$(expr ${counters[$CHAIN_PARENT]} + 1)" - if [ ! $? = 0 ] + if [ $? -ne 0 ] then echo "$1, $counters[$1]" exit 1 @@ -35,7 +35,7 @@ lookfor(){ # echo "$1 file:" # cat "$1" | jq NEXT_TARGET="$(cat "$1" | jq | grep previous | tr -d ' ' | sed -e 's/previous//g; s/[",:]//g;')" - if [ ! "$NEXT_TARGET" = "" ] + if [ -n "$NEXT_TARGET" ] then _ak_log_info "Found previous: $NEXT_TARGET" if [ ! -f "$NEXT_TARGET" ] -- cgit v1.2.3