diff options
Diffstat (limited to 'bin/ak-mine')
| -rwxr-xr-x | bin/ak-mine | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/bin/ak-mine b/bin/ak-mine index 46e106d..53f7549 100755 --- a/bin/ak-mine +++ b/bin/ak-mine @@ -29,8 +29,10 @@ fullprogrampath="$(realpath $0)" PROGRAM=$(basename $0) descriptionString="Sblock mining" -source $AK_LIBDIR/_ak_log -source $AK_LIBDIR/_ak_script +source $AK_LIBDIR/_ak_lib_load +_ak_lib_load _ak_log +_ak_lib_load _ak_script +_ak_lib_load _ak_datetime gather_zblocks(){ if [ "$(cat $AK_ZBLOCKSFILE | jq -r '.[].zblock' | wc -l)" -ne 0 ] @@ -56,7 +58,7 @@ proofofwork(){ i=1 l=1; while [ $l = 1 ] do - TIMESTAMP="$(date -u +%s)" + TIMESTAMP="$(_ak_datetime_unix)" SHA="$(echo -n $TEST'"nonce":"'$i'","previous":"'$PRE'","timestamp":"'$TIMESTAMP'","miner":"'$MINER'","reward":"40"}' | sha512sum | awk '{ print $1 }')" # Static difficulty for securing the sblock echo $SHA | grep -e '^000' @@ -88,7 +90,8 @@ then -h | --help) _ak_usage; exit;; --example) example; exit;; --mine) proofofwork; exit;; - * ) _ak_usage;; + * ) _ak_usage err;; esac -else _ak_usage +else + _ak_usage err fi |
