Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update miner_start_farm.sh #1

Open
wants to merge 1 commit into
base: farm-deploy
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions miner_start_farm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,35 +33,35 @@ if [[ "$1" == "00" ]]; then

elif [[ "$1" == "01" ]]; then
# run_miner 0 1 35.184.84.143 30001
run_miner 0 1 34.168.1.153 30000
run_miner 0 1 34.168.1.153 30001

elif [[ "$1" == "02" ]]; then
# run_miner 0 2 35.184.84.143 30002
run_miner 0 2 34.168.1.153 30000
run_miner 0 2 34.168.1.153 30002

elif [[ "$1" == "10" ]]; then
# run_miner 1 0 35.184.84.143 30003
run_miner 1 0 34.168.1.153 30000
run_miner 1 0 34.168.1.153 30003

elif [[ "$1" == "11" ]]; then
# run_miner 1 1 35.184.84.143 30004
run_miner 1 1 34.168.1.153 30000
run_miner 1 1 34.168.1.153 30004

elif [[ "$1" == "12" ]]; then
# run_miner 1 2 35.184.84.143 30005
run_miner 1 2 34.168.1.153 30000
run_miner 1 2 34.168.1.153 30005

elif [[ "$1" == "20" ]]; then
# run_miner 2 0 35.184.84.143 30006
run_miner 2 0 34.168.1.153 30000
run_miner 2 0 34.168.1.153 30006

elif [[ "$1" == "21" ]]; then
# run_miner 2 1 35.184.84.143 30007
run_miner 2 1 34.168.1.153 30000
run_miner 2 1 34.168.1.153 30007

elif [[ "$1" == "22" ]]; then
# run_miner 1 2 35.184.84.143 30008
run_miner 2 2 34.168.1.153 30000
run_miner 2 2 34.168.1.153 30008

else
echo "Invalid miner_num value"
Expand Down