This commit is contained in:
Sthope 2021-12-04 23:42:41 +01:00
commit 57192ab464
2 changed files with 25 additions and 0 deletions

BIN
iPhone/noso-go Executable file

Binary file not shown.

25
iPhone/noso-go.sh Executable file
View File

@ -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