diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-01 18:01:22 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2 (patch) | |
tree | 222c168f5368ff88fb80575ab1419139bf46f799 /test | |
parent | d3390db38f6be5b7ea21f476eec6d617d9d44db1 (diff) | |
download | dexon-1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2.tar dexon-1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2.tar.gz dexon-1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2.tar.bz2 dexon-1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2.tar.lz dexon-1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2.tar.xz dexon-1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2.tar.zst dexon-1d236abb9d961c24f8bdd50ca1cd4b4c44f9f0b2.zip |
dex: minor refactor
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 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 |