commit 57192ab4647e5679c324c1d98c6f2ef9d673e06f Author: sthope Date: Sat Dec 4 23:42:41 2021 +0100 initial diff --git a/iPhone/noso-go b/iPhone/noso-go new file mode 100755 index 0000000..8d5f45e Binary files /dev/null and b/iPhone/noso-go differ diff --git a/iPhone/noso-go.sh b/iPhone/noso-go.sh new file mode 100755 index 0000000..a98afd7 --- /dev/null +++ b/iPhone/noso-go.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash + +POOL="devnoso" +WALLET="N3KSeC8Le3GDDUU9h4GdHMyGvbH52Ao" +CPU=2 + +for wallet in ${WALLET:?Variable not set or is empty}; do + wallets+=" --wallet $wallet" +done + +while true; do + ./noso-go mine pool \ + "${POOL:?Variable not set or is empty}" \ + $wallets \ + --cpu ${CPU:?Variable not set or is empty} \ + --exit-on-retry \ + --random-wallet + + exit_code=$? + if [ "$exit_code" != "1" ]; then + continue + else + exit $exit_code + fi +done