diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-14 19:59:57 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 2d9f86f9a5af14cb2058912deb490640dfd83977 (patch) | |
tree | 3a13ba8a22106f475f413f3ef9220ebaced79cfa /test/run_test.sh | |
parent | 5b66ac0cdf8344783bb7bca1d7b2678a603c40df (diff) | |
download | dexon-2d9f86f9a5af14cb2058912deb490640dfd83977.tar dexon-2d9f86f9a5af14cb2058912deb490640dfd83977.tar.gz dexon-2d9f86f9a5af14cb2058912deb490640dfd83977.tar.bz2 dexon-2d9f86f9a5af14cb2058912deb490640dfd83977.tar.lz dexon-2d9f86f9a5af14cb2058912deb490640dfd83977.tar.xz dexon-2d9f86f9a5af14cb2058912deb490640dfd83977.tar.zst dexon-2d9f86f9a5af14cb2058912deb490640dfd83977.zip |
params: write dMoment into ChainConfig (#150)
Diffstat (limited to 'test/run_test.sh')
-rwxr-xr-x | test/run_test.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index 71b2715dd..a42e27142 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -22,6 +22,7 @@ rm -f log-latest ln -s $logsdir log-latest let dmoment=`date +%s`+7 +sed -i "s/\"dMoment\": [0-9]\+,/\"dMoment\": $dmoment,/g" $GENESIS # A standalone RPC server for accepting RPC requests. datadir=$PWD/Dexon.rpc @@ -37,7 +38,6 @@ $GDEX \ --ws --wsapi=eth,net,web3,debug \ --wsaddr=0.0.0.0 --wsport=8546 \ --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ - --dmoment=$dmoment \ > $logsdir/gdex.rpc.log 2>&1 & # Nodes @@ -57,7 +57,6 @@ for i in $(seq 0 3); do --ws --wsapi=eth,net,web3,debug \ --wsaddr=0.0.0.0 --wsport=$((8548 + $i * 2)) \ --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ - --dmoment=$dmoment \ --pprof --pprofaddr=localhost --pprofport=$((6060 + $i)) \ > $logsdir/gdex.$i.log 2>&1 & done |