The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/deploy_node.sh

8 lines
237 B

LEADER_PORT=3333
SLAVE_START_PORT=3000
SLAVE_END_PORT=3009
for port in `seq $SLAVE_START_PORT $SLAVE_END_PORT`;
do
go run ./benchmark_node.go -mode slave -port $port &
done
go run ./benchmark_node.go -mode leader -port $LEADER_PORT &