This commit is contained in:
2021-12-05 15:12:31 +01:00
parent ee92767f1b
commit 76720219ca
19 changed files with 436925 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,27 @@
#!/usr/bin/env bash
# POOL="DevNosoEU devnoso"
POOL="DevNosoEU"
WALLET="N2rWzj7z8zxL8dDpJEUs82owtvYF8Fh"
CPU=8
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