aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-07-08 23:35:33 +0300
committerkaotisk <kaotisk@arching-kaos.org>2024-07-08 23:35:33 +0300
commita20d4d8e44cc4bbc66d60af4c965dfe2301864a0 (patch)
tree091997a55f8ce9bab0ee73662338213865fb4e84
parent5516231342d6d0ceac5cf560874176a509d617ee (diff)
downloadarching-kaos-tools-a20d4d8e44cc4bbc66d60af4c965dfe2301864a0.tar.gz
arching-kaos-tools-a20d4d8e44cc4bbc66d60af4c965dfe2301864a0.tar.bz2
arching-kaos-tools-a20d4d8e44cc4bbc66d60af4c965dfe2301864a0.zip
argumentless execution + refactoring
-rwxr-xr-xbin/ak-miner-script54
1 files changed, 22 insertions, 32 deletions
diff --git a/bin/ak-miner-script b/bin/ak-miner-script
index ae9f7a8..9843ac6 100755
--- a/bin/ak-miner-script
+++ b/bin/ak-miner-script
@@ -1,61 +1,51 @@
#!/bin/bash
PROGRAM="$(basename $0)"
gather_zblocks(){
- cat $AK_ZBLOCKSFILE | \
- jq | \
- grep -e 'Qm.\{44\}' | \
- sed -e 's/\"zblock\"://g; s/ //g;' | \
- tr -d '\n'| \
- sed -e 's/""/","/g;
- s/^/[&/g; s/$/&]/g;
- s/^/{"zblocks":&/;
- s/$/&,/g'
+ if [ "$(cat $AK_ZBLOCKSFILE | jq -r '.[].zblock' | wc -l)" -ne 0 ]
+ then
+ cat $AK_ZBLOCKSFILE | \
+ jq | \
+ grep -e 'Qm.\{44\}' | \
+ sed -e 's/\"zblock\"://g; s/ //g;' | \
+ tr -d '\n'| \
+ sed -e 's/""/","/g;
+ s/^/[&/g; s/$/&]/g;
+ s/^/{"zblocks":&/;
+ s/$/&,/g'
+ else
+ echo -ne '{'
+ fi
}
proofofwork(){
- TEST="$1"
- PRE="$2"
- MINER="$3"
+ TEST="$(gather_zblocks)"
+ MINER="$(ak-gpg --get-key-self-as-ipfs)"
+ PRE="$(ak-find-latest-mined-sblock | jq -r '.latest_block' | tr -d $'\n')"
i=1
l=1; while [ $l = 1 ]
do
TIMESTAMP="$(date -u +%s)"
- SHA="$(echo $TEST'"nonce":"'$i'","previous":"'$PRE'","timestamp":"'$TIMESTAMP'","miner":"'$MINER'","reward":"40"}' | sha512sum | awk '{ print $1 }')"
-
+ 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'
if [ $? -eq 0 ]
then
echo "SHA512 is $SHA"
echo "Mined block:"
- echo $TEST'"nonce":"'$i'","previous":"'$PRE'","timestamp":"'$TIMESTAMP'","miner":"'$MINER'","reward":"40"}' | jq --compact-output > $AK_MINEDBLOCKSDIR/$SHA
+ echo -n $TEST'"nonce":"'$i'","previous":"'$PRE'","timestamp":"'$TIMESTAMP'","miner":"'$MINER'","reward":"40"}' | jq --compact-output > $AK_MINEDBLOCKSDIR/$SHA
cat $AK_MINEDBLOCKSDIR/$SHA | jq
# exit 0
# Instead of exiting, we will now sleep for 60 seconds
# after that we continue mining on top of the just mined
# block.
- sleep 60
- proofofwork "$1" "$SHA" "$MINER"
+ sleep 10
+ proofofwork
fi
i=$(expr $i + 1);
done
}
-usage(){
- echo "$PROGRAM <somethings> <previous> <miner_address>"
- echo " hit 'ak-zchain --crawl' after that."
-}
-
-if [ -z "$1" ] ;
-then
- usage
- exit;
-elif [ ! -z "$1" ] && [ ! -z "$2" ] && [ ! -z "$3" ]
-then
- proofofwork "$1" "$2" "$3";
-else
- usage
-fi
+proofofwork
exit