diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-14 23:34:07 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-01-14 23:34:07 +0800 |
commit | 297a8b8d4900336af14dc1e829f70ade79529b71 (patch) | |
tree | 78b0e1cebbd64f6763f72c9d69d102ec33af118b | |
parent | a8d6344e482815275d55a294597d433a6dbd87bd (diff) | |
download | dexon-297a8b8d4900336af14dc1e829f70ade79529b71.tar.gz dexon-297a8b8d4900336af14dc1e829f70ade79529b71.tar.zst dexon-297a8b8d4900336af14dc1e829f70ade79529b71.zip |
fixup! params: write dMoment into ChainConfig (#150)
-rw-r--r-- | test/genesis.json | 1 | ||||
-rwxr-xr-x | test/run_test.sh | 3 |
2 files changed, 2 insertions, 2 deletions
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 |