From 2b03b31d46e166e70ea82b806db47bb6408282e3 Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Mon, 14 Jan 2019 19:59:57 +0800 Subject: params: write dMoment into ChainConfig (#150) --- test/genesis.json | 1 + test/run_test.sh | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/genesis.json b/test/genesis.json index ce3526883..efa2727ad 100644 --- a/test/genesis.json +++ b/test/genesis.json @@ -1,6 +1,7 @@ { "config": { "chainId": 237, + "dMoment": 1547480026, "homesteadBlock": 0, "daoForkBlock": 0, "daoForkSupport": true, 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 -- cgit v1.2.3