aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rwxr-xr-xlib/_ak_sblock12
-rwxr-xr-xlib/_ak_schain7
2 files changed, 17 insertions, 2 deletions
diff --git a/lib/_ak_sblock b/lib/_ak_sblock
new file mode 100755
index 0000000..04038da
--- /dev/null
+++ b/lib/_ak_sblock
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+source $AK_LIBDIR/_ak_log
+
+_ak_sblock_show(){
+ if [ ! -z $1 ]
+ then
+ cat $AK_MINEDBLOCKSDIR/$1 | jq
+ else
+ _ak_log_error "No sblock hash input"
+ fi
+}
diff --git a/lib/_ak_schain b/lib/_ak_schain
index 2ff56eb..3813b98 100755
--- a/lib/_ak_schain
+++ b/lib/_ak_schain
@@ -1,4 +1,7 @@
#!/bin/bash
+
+source $AK_LIBDIR/_ak_sblock
+
AK_SCHAINSDIR=$AK_WORKDIR/schains
GENESIS="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
@@ -62,8 +65,8 @@ _ak_schain_crawl(){
_ak_log_warning "Could not find $CUR_TARGET"
else
( echo -n '{"sblock":"'$1'",' &&
- ak-sblock-show $CUR_TARGET | sed -e 's/^{//g') | jq
- NEXT_TARGET="$(ak-sblock-show $CUR_TARGET | jq -r '.previous')"
+ _ak_sblock_show $CUR_TARGET | sed -e 's/^{//g') | jq
+ NEXT_TARGET="$(_ak_sblock_show $CUR_TARGET | jq -r '.previous')"
_ak_log_info "Found previous: $NEXT_TARGET"
_ak_schain_crawl "$NEXT_TARGET"
fi