Initial commit
This commit is contained in:
parent
23b7afe14a
commit
600fc01d1c
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
#POOL="DevNosoEU"
|
#POOL="DevNosoEU"
|
||||||
#POOL="devnoso"
|
POOL="devnoso"
|
||||||
POOL="leviable"
|
#POOL="leviable"
|
||||||
#POOL="russiapool"
|
#POOL="russiapool"
|
||||||
#POOL="CryptoCribRO"
|
#POOL="CryptoCribRO"
|
||||||
WALLET="N2rWzj7z8zxL8dDpJEUs82owtvYF8Fh"
|
WALLET="N2rWzj7z8zxL8dDpJEUs82owtvYF8Fh"
|
||||||
|
BIN
Farmers/farmer03/noso-go
Executable file
BIN
Farmers/farmer03/noso-go
Executable file
Binary file not shown.
29
Farmers/farmer03/noso-go.sh
Executable file
29
Farmers/farmer03/noso-go.sh
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
#POOL="DevNosoEU"
|
||||||
|
POOL="devnoso"
|
||||||
|
#POOL="leviable"
|
||||||
|
#POOL="russiapool"
|
||||||
|
#POOL="CryptoCribRO"
|
||||||
|
WALLET="N3VxbwLLQwZfkshNqWeRYASrctAekHC"
|
||||||
|
CPU=4
|
||||||
|
|
||||||
|
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
|
Loading…
x
Reference in New Issue
Block a user