From dd0fb11fa344136c8ec3df186f8334a5c9fceb31 Mon Sep 17 00:00:00 2001 From: benjamin202410 Date: Mon, 30 Dec 2024 18:31:47 -0800 Subject: [PATCH] reduce gas limit for devnet to 50M (#785) 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 8e52b1c92380..19250b52fcde 100755 --- a/cicd/devnet/start.sh +++ b/cicd/devnet/start.sh @@ -86,7 +86,7 @@ XDC --ethstats ${netstats} --gcmode archive \ --http-port $rpc_port \ --http-api db,eth,debug,net,shh,txpool,personal,web3,XDPoS \ --http-vhosts "*" --unlock "${wallet}" --password /work/.pwd --mine \ ---miner-gasprice "1" --miner-gaslimit "420000000" --verbosity ${log_level} \ +--miner-gasprice "1" --miner-gaslimit "50000000" --verbosity ${log_level} \ --debugdatadir /work/xdcchain \ --store-reward \ --ws --ws-addr=0.0.0.0 --ws-port $ws_port \