30 lines
557 B
Bash
Executable File
30 lines
557 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#POOL="DevNosoEU"
|
|
POOL="devnoso"
|
|
#POOL="leviable"
|
|
#POOL="russiapool"
|
|
#POOL="CryptoCribRO"
|
|
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
|