diff options
author | Sonic <sonic@dexon.org> | 2018-11-20 15:32:21 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-19 20:54:27 +0800 |
commit | 93317fbb29d0f9ad85b3a78eb61c963fad6d9742 (patch) | |
tree | 5d642f8f0ca0ca8c7dda48b62e1d4f04db10fbd6 | |
parent | bd5896ae1e52323a0022d40d8622c2a04408af24 (diff) | |
download | dexon-93317fbb29d0f9ad85b3a78eb61c963fad6d9742.tar.gz dexon-93317fbb29d0f9ad85b3a78eb61c963fad6d9742.tar.zst dexon-93317fbb29d0f9ad85b3a78eb61c963fad6d9742.zip |
test: add script to run sync node
-rwxr-xr-x | test/sync_test.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/sync_test.sh b/test/sync_test.sh new file mode 100755 index 000000000..702cc1e32 --- /dev/null +++ b/test/sync_test.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +GDEX=../build/bin/gdex + +logsdir=$PWD/sync-log +rm -rf $logsdir +mkdir $logsdir + +# A standalone RPC server for accepting RPC requests. +for i in $(seq 0 3); do + datadir=$PWD/Dexon.sync.$i + rm -rf $datadir + $GDEX --datadir=$datadir init genesis.json + $GDEX --testnet --verbosity=4 --gcmode=archive --datadir=$datadir \ + --rpc --rpcapi=eth,net,web3,debug --rpcaddr=0.0.0.0 \ + --port=$((30505 + $i)) \ + --rpcport=$((8663 + $i *2)) \ + --wsport=$((8664 + $i * 2)) \ + --ws --wsapi=eth,net,web3,debug --wsaddr=0.0.0.0 \ + --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ + > $logsdir/gdex.sync.$i.log 2>&1 & +done + +tail -f $logsdir/gdex.*.log |