Official Go implementation of the Ethereum protocol
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.
|
#!/bin/bash
|
|
# bootstrap chains - used to regenerate tests/chains/*.chain
|
|
|
|
mkdir -p chains
|
|
bash ./mine.sh 00 10
|
|
bash ./mine.sh 01 5 00
|
|
bash ./mine.sh 02 10 00
|
|
bash ./mine.sh 03 5 02
|
|
bash ./mine.sh 04 10 02 |