diff options
Diffstat (limited to 'lib/_ak_sblock')
-rwxr-xr-x | lib/_ak_sblock | 12 |
1 files changed, 12 insertions, 0 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 +} |