From 7155e722e4ca9f1ab57ca73ffdb44e9ec0fc795c Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 7 Aug 2023 19:45:19 +1000 Subject: [PATCH] make sync mode full to avoid race condition (#305) Co-authored-by: Liam Lai --- cicd/devnet/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicd/devnet/start.sh b/cicd/devnet/start.sh index 2719543dc9..3565acf1e6 100755 --- a/cicd/devnet/start.sh +++ b/cicd/devnet/start.sh @@ -55,7 +55,7 @@ echo "Starting nodes with $bootnodes ..." # Note: --gcmode=archive means node will store all historical data. This will lead to high memory usage. Only needed if you need the node to perform historical operations XDC --ethstats ${netstats} --gcmode=full \ --nat extip:${INSTANCE_IP} \ ---bootnodes ${bootnodes} --syncmode fast \ +--bootnodes ${bootnodes} --syncmode full \ --datadir /work/xdcchain --networkid 551 \ -port 30303 --rpc --rpccorsdomain "*" --rpcaddr 0.0.0.0 \ --rpcport 8545 \