diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-15 17:34:36 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:50 +0800 |
commit | 0a000e0595b6b683d6a57776b4e5381a92c20765 (patch) | |
tree | 0fcf72d10d317860b5fa28840d10b413db31931f /test | |
parent | 447c36e41e989d9e60c70ecc7a1a45bb1814009f (diff) | |
download | dexon-0a000e0595b6b683d6a57776b4e5381a92c20765.tar.gz dexon-0a000e0595b6b683d6a57776b4e5381a92c20765.tar.zst dexon-0a000e0595b6b683d6a57776b4e5381a92c20765.zip |
core: setup stake in order so genesis block is deterministic
Diffstat (limited to 'test')
-rwxr-xr-x | test/run_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index f02200994..53c375705 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -11,7 +11,7 @@ for i in $(seq 1 7); do rm -rf $datadir $GETH --datadir=$datadir init genesis.json cp test$i.nodekey $datadir/geth/nodekey - $GETH --datadir=$datadir --port=$((21000 + $i)) > geth.$i.log 2>&1 & + $GETH --verbosity=4 --datadir=$datadir --port=$((28000 + $i)) > geth.$i.log 2>&1 & done tail -f geth.*.log |