From 4a006efd6e951944f62f0f840e48e612e42f3bfc Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Mon, 20 May 2024 14:58:39 +0200 Subject: [PATCH] gascap --- arbitrum-nova-fullnode.yml | 1 + avalanche-fullnode.yml | 2 +- fantom/scripts/entrypoint-fullnode.sh | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/arbitrum-nova-fullnode.yml b/arbitrum-nova-fullnode.yml index 3948cf5b..0b7aa61b 100644 --- a/arbitrum-nova-fullnode.yml +++ b/arbitrum-nova-fullnode.yml @@ -19,6 +19,7 @@ services: - --parent-chain.connection.url=${ARBITRUM_L1_URL} - --parent-chain.blob-client.beacon-url=${ARBITRUM_L1_BEACON_URL} - --chain.id=42170 + - --execution.rpc.gas-cap=600000000 - --http.api=net,web3,eth,debug - --http.corsdomain=* - --http.addr=0.0.0.0 diff --git a/avalanche-fullnode.yml b/avalanche-fullnode.yml index 5ccf3cab..a0ae6015 100644 --- a/avalanche-fullnode.yml +++ b/avalanche-fullnode.yml @@ -17,7 +17,7 @@ services: - ./avalanche/configs/chains/C/fullnode-config.json:/root/.avalanchego/configs/chains/C/config.json networks: - chains - command: "/avalanchego/build/avalanchego --http-host= --http-allowed-hosts=* --staking-port=18507 --public-ip=$IP" + command: "/avalanchego/build/avalanchego --http-host= --http-allowed-hosts=* --staking-port=18507 --public-ip=$IP --coreth-config='{\"rpc-gas-limit\":600000000}'" restart: unless-stopped diff --git a/fantom/scripts/entrypoint-fullnode.sh b/fantom/scripts/entrypoint-fullnode.sh index 11c2254f..0ffcf1cc 100644 --- a/fantom/scripts/entrypoint-fullnode.sh +++ b/fantom/scripts/entrypoint-fullnode.sh @@ -33,6 +33,7 @@ opera \ --ws.api=ftm,eth,debug,admin,web3,personal,net,txpool,sfc,trace \ --ws.origins="*" \ --nousb \ + --rpc.gascap=600000000 \ --db.migration.mode reformat \ --tracenode \ --db.preset pbl-1 \