diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-24 18:59:48 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:17 +0800 |
commit | d8061c0557a43cc1f67ba59a73d13df1d4436a65 (patch) | |
tree | 84547a42be163047e9715bb0c8b5af66251d0c86 /test | |
parent | 185c358e4e0e430df9cd68f85888e8b142786609 (diff) | |
download | go-tangerine-d8061c0557a43cc1f67ba59a73d13df1d4436a65.tar go-tangerine-d8061c0557a43cc1f67ba59a73d13df1d4436a65.tar.gz go-tangerine-d8061c0557a43cc1f67ba59a73d13df1d4436a65.tar.bz2 go-tangerine-d8061c0557a43cc1f67ba59a73d13df1d4436a65.tar.lz go-tangerine-d8061c0557a43cc1f67ba59a73d13df1d4436a65.tar.xz go-tangerine-d8061c0557a43cc1f67ba59a73d13df1d4436a65.tar.zst go-tangerine-d8061c0557a43cc1f67ba59a73d13df1d4436a65.zip |
Rename geth -> gdex and fix Dockerfile
Diffstat (limited to 'test')
-rwxr-xr-x | test/run_test.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index 8e678fc43..ddbe30b4a 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -1,16 +1,16 @@ #!/bin/bash -GETH=../build/bin/geth +GDEX=../build/bin/gdex -pkill -9 -f geth +pkill -9 -f gdex bootnode -nodekey bootnode.key --verbosity=9 > bootnode.log 2>&1 & for i in $(seq 0 3); do datadir=$PWD/Dexon.$i rm -rf $datadir - $GETH --datadir=$datadir init genesis.json - $GETH --verbosity=4 --datadir=$datadir --nodekey=test$i.nodekey --port=$((28000 + $i)) --rpc --rpcaddr 127.0.0.1 --rpcport=$((8545 + $i)) --rpcapi=eth,net,web3,debug --rpcvhosts='*' --rpccorsdomain="http://localhost:8000,https://www.myetherwallet.com" > geth.$i.log 2>&1 & + $GDEX --datadir=$datadir init genesis.json + $GDEX --verbosity=4 --datadir=$datadir --nodekey=test$i.nodekey --port=$((28000 + $i)) --rpc --rpcaddr 127.0.0.1 --rpcport=$((8545 + $i)) --rpcapi=eth,net,web3,debug --rpcvhosts='*' --rpccorsdomain="http://localhost:8000,https://www.myetherwallet.com" > gdex.$i.log 2>&1 & done -tail -f geth.*.log +tail -f gdex.*.log |