diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-01 18:01:22 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:17 +0800 |
commit | 05cdd58111500b1b40caa9feffbea6c58f277a48 (patch) | |
tree | ff7c0b521b29a558a23f8fe8735502cb4810d00b /test/run_test.sh | |
parent | 7cd4ecd047ee297e10753ff642ad4893418ace48 (diff) | |
download | go-tangerine-05cdd58111500b1b40caa9feffbea6c58f277a48.tar go-tangerine-05cdd58111500b1b40caa9feffbea6c58f277a48.tar.gz go-tangerine-05cdd58111500b1b40caa9feffbea6c58f277a48.tar.bz2 go-tangerine-05cdd58111500b1b40caa9feffbea6c58f277a48.tar.lz go-tangerine-05cdd58111500b1b40caa9feffbea6c58f277a48.tar.xz go-tangerine-05cdd58111500b1b40caa9feffbea6c58f277a48.tar.zst go-tangerine-05cdd58111500b1b40caa9feffbea6c58f277a48.zip |
dex: minor refactor
Diffstat (limited to 'test/run_test.sh')
-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 ddbe30b4a..ca2c391a0 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -10,7 +10,7 @@ for i in $(seq 0 3); do datadir=$PWD/Dexon.$i rm -rf $datadir $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 & + $GDEX --verbosity=4 --gcmode=archive --datadir=$datadir --nodekey=test$i.nodekey --port=$((28000 + $i)) --rpc --rpcaddr=0.0.0.0 --rpcport=$((8545 + $i * 2)) --rpcapi=eth,net,web3,debug --ws --wsapi=eth,net,web3,debug --wsaddr=0.0.0.0 --wsport=$((8546 + $i * 2)) --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" > gdex.$i.log 2>&1 & done tail -f gdex.*.log |