From adb04994560c2558fc93c85ea5976b3744ca6b6b Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Thu, 15 Nov 2018 13:30:50 +0800 Subject: core: refactor validator and fix light node sync (#25) Remove custom Dexon validator by adding a new `ValidateWitnessData` method into the validator interface. This allow us to properly detect know blocks. This also allow other gdex "light" client to sync compaction chain. Also, setup a standalone RPC node for handling RPC reqeusts. --- test/run_test.sh | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) (limited to 'test') diff --git a/test/run_test.sh b/test/run_test.sh index a7dd934bc..f535a609d 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -15,14 +15,20 @@ rm -f log-latest ln -s $logsdir log-latest # A standalone RPC server for accepting RPC requests. -# datadir=$PWD/Dexon.rpc -# rm -rf $datadir -# $GDEX --datadir=$datadir init genesis.json -# $GDEX --verbosity=4 --gcmode=archive --datadir=$datadir \ -# --rpc --rpcapi=eth,net,web3,debug --rpcaddr=0.0.0.0 --rpcport=8543 \ -# --ws --wsapi=eth,net,web3,debug --wsaddr=0.0.0.0 --wsport=8544 \ -# --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ -# > $logsdir/gdex.rpc.log 2>&1 & +datadir=$PWD/Dexon.rpc +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 --rpcport=8545 \ + --ws --wsapi=eth,net,web3,debug \ + --wsaddr=0.0.0.0 --wsport=8546 \ + --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ + > $logsdir/gdex.rpc.log 2>&1 & # Nodes for i in $(seq 0 3); do @@ -37,9 +43,9 @@ for i in $(seq 0 3); do --datadir=$datadir --nodekey=test$i.nodekey \ --port=$((30305 + $i)) \ --rpc --rpcapi=eth,net,web3,debug \ - --rpcaddr=0.0.0.0 --rpcport=$((8545 + $i * 2)) \ + --rpcaddr=0.0.0.0 --rpcport=$((8547 + $i * 2)) \ --ws --wsapi=eth,net,web3,debug \ - --wsaddr=0.0.0.0 --wsport=$((8546 + $i * 2)) \ + --wsaddr=0.0.0.0 --wsport=$((8548 + $i * 2)) \ --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ --pprof --pprofaddr=localhost --pprofport=$((6060 + $i)) \ > $logsdir/gdex.$i.log 2>&1 & -- cgit v1.2.3