fix the limit

This commit is contained in:
Sebastian
2024-05-28 07:33:39 +02:00
parent f3a95fbf7d
commit 217c89f340
2 changed files with 2 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
chain: ${CHAIN}
labels:
provider: ${PROVIDER}
extra_gas_limit: 600000000
method-groups:
enabled:
- debug

View File

@@ -16,7 +16,7 @@ services:
- "44169:44169"
- "44169:44169/udp"
restart: unless-stopped
command: node --chain mainnet --rpc-max-connections 429496729 --metrics 0.0.0.0:9001 --http --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 44169 --discovery.port 44169 --authrpc.addr 0.0.0.0 --authrpc.jwtsecret /jwtsecret --http.api "debug,eth,net,trace,txpool,web3,rpc,reth" --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth" --http.corsdomain '*' --rpc.max-logs-per-response 1100000 --rpc.gascap 5000000000
command: node --chain mainnet --rpc-max-connections 429496729 --metrics 0.0.0.0:9001 --http --http.addr 0.0.0.0 --http.port 8545 --ws --ws.addr 0.0.0.0 --ws.port 8545 --ws.origins '*' --port 44169 --discovery.port 44169 --authrpc.addr 0.0.0.0 --authrpc.jwtsecret /jwtsecret --http.api "debug,eth,net,trace,txpool,web3,rpc,reth" --ws.api "debug,eth,net,trace,txpool,web3,rpc,reth" --http.corsdomain '*' --rpc.max-logs-per-response 1100000 --rpc.gascap 600000000
stop_grace_period: 1m
labels:
- "prometheus-scrape.enabled=true"