diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-16 19:26:29 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:23:39 +0800 |
commit | 7d938ac7fd4f787f6e4507ce69c6acc677eb8080 (patch) | |
tree | 664c98a1f37787d4352d2527b4f6752d9b9bc755 /test | |
parent | ab284ca86e5181cbd009aaa1e9b49d56eb532f97 (diff) | |
download | go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.gz go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.bz2 go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.lz go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.xz go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.tar.zst go-tangerine-7d938ac7fd4f787f6e4507ce69c6acc677eb8080.zip |
dex/core: misc bug fixes
Diffstat (limited to 'test')
-rw-r--r-- | test/genesis.json | 2 | ||||
-rwxr-xr-x | test/run_test.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/genesis.json b/test/genesis.json index 2963aaf3c..51857df5f 100644 --- a/test/genesis.json +++ b/test/genesis.json @@ -15,7 +15,7 @@ "phiRatio": 667000, "notarySetSize": 4, "dkgSetSize": 4, - "roundInterval": 600000, + "roundInterval": 99999999999, "minBlockInterval": 900, "maxBlockInterval": 1100 } diff --git a/test/run_test.sh b/test/run_test.sh index df3505a00..b38ca4da6 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -11,7 +11,7 @@ for i in $(seq 0 3); do rm -rf $datadir $GETH --datadir=$datadir init genesis.json cp test$i.nodekey $datadir/geth/nodekey - $GETH --verbosity=4 --datadir=$datadir --port=$((28000 + $i)) > geth.$i.log 2>&1 & + $GETH --verbosity=4 --datadir=$datadir --port=$((28000 + $i)) --rpc --rpcaddr 127.0.0.1 --rpcport=$((8545 + $i)) --rpcapi=eth,net,web3,debug --rpcvhosts='' --rpccorsdomain="https://www.myetherwallet.com" > geth.$i.log 2>&1 & done tail -f geth.*.log |