Initial commit

This commit is contained in:
Sthope 2021-12-06 18:01:17 +01:00
parent 23b7afe14a
commit 600fc01d1c
5 changed files with 193060 additions and 3 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
#!/usr/bin/env bash
#POOL="DevNosoEU"
#POOL="devnoso"
POOL="leviable"
POOL="devnoso"
#POOL="leviable"
#POOL="russiapool"
#POOL="CryptoCribRO"
WALLET="N2rWzj7z8zxL8dDpJEUs82owtvYF8Fh"

BIN
Farmers/farmer03/noso-go Executable file

Binary file not shown.

29
Farmers/farmer03/noso-go.sh Executable file
View 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

2
commit
View File

@ -1 +1 @@
"Initial commit"
Initial commit