Skip to content

Commit

Permalink
Merge pull request #6 from ethpandaops/bbusa/gas-limit-36M
Browse files Browse the repository at this point in the history
bump gaslimit to 36M
  • Loading branch information
barnabasbusa authored Dec 10, 2024
2 parents 5779674 + 330aa06 commit e3546e2
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/besu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ besu_container_command_extra_args:
- --data-storage-format=BONSAI
- --bonsai-limit-trie-logs-enabled=false
- --ethstats={{ inventory_hostname }}:{{ ethstats_secret }}@{{ ethstats_url }}:443
- --target-gas-limit 36000000
besu_container_pull: true
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/erigon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ erigon_container_command_extra_args:
- --ethstats={{ inventory_hostname }}:{{ ethstats_secret }}@{{ ethstats_url }}
- --verbosity=5
- --log.dir.verbosity=5
- --miner.gaslimit=36000000
erigon_init_custom_network: true
erigon_init_custom_network_genesis_file: "{{ eth_testnet_config_dir }}/genesis.json"

Expand Down
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/geth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ geth_container_command_extra_args:
- --syncmode=full
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --ethstats={{ inventory_hostname }}:{{ ethstats_secret }}@{{ ethstats_url }}
- --miner.gaslimit=36000000
geth_init_custom_network: true
geth_init_custom_network_genesis_file: "{{ eth_testnet_config_dir }}/genesis.json"
geth_init_custom_network_container_command:
Expand Down
2 changes: 2 additions & 0 deletions ansible/inventories/devnet-0/group_vars/lighthouse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,7 @@ lighthouse_validator_container_volumes:
lighthouse_validator_container_command_extra_args:
- --testnet-dir=/network-config
- --graffiti={{ ansible_hostname }}
- --gas-limit=36000000
- --builder-proposals
lighthouse_validator_datadir: /data/lighthouse-validator
lighthouse_container_pull: true
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/lodestar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,6 @@ lodestar_validator_container_volumes:
lodestar_validator_container_command_extra_args:
- --paramsFile=/network-config/config.yaml
- --graffiti={{ ansible_hostname }}
- --defaultGasLimit=36000000
lodestar_validator_datadir: /data/lodestar-validator
lodestar_container_pull: true
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/nethermind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ nethermind_container_command_extra_args:
- --Seq.ServerUrl={{ nethermind_seq_server }}
- --Seq.ApiKey={{ nethermind_seq_api_key }}
- --Metrics.PushGatewayUrl={{ nethermind_push_gateway }}
- --Blocks.TargetBlockGasLimit=36000000
nethermind_container_pull: true

prometheus_config: |
Expand Down
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/nimbus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ nimbus_container_command_extra_simple_args:
- --log-level=DEBUG
- --light-client-data-serve=false
- --graffiti={{ ansible_hostname }}
- --suggested-gas-limit=36000000
nimbus_container_command_extra_bootnode_args: >-
{{ ethereum_cl_bootnodes | map('regex_replace', '^', '--bootstrap-node=') | list }}
Expand Down
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/prysm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,5 @@ prysm_validator_container_entrypoint:
prysm_validator_container_command_extra_args:
- --chain-config-file=/network-config/config.yaml
- --graffiti={{ ansible_hostname }}
- --suggested-gas-limit=36000000
prysm_validator_datadir: /data/prysm-validator
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/reth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ reth_container_volumes:
reth_container_command_extra_args:
- --chain=/network-config/genesis.json
- --bootnodes={{ ethereum_el_bootnodes | join(',') }}
- --builder.gaslimit=36000000
prometheus_config: |
global:
scrape_interval: 30s
Expand Down
1 change: 1 addition & 0 deletions ansible/inventories/devnet-0/group_vars/teku.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ teku_container_command_extra_args:
- --metrics-block-timing-tracking-enabled
- --ignore-weak-subjectivity-period-enabled
- --rest-api-docs-enabled
- --Xvalidators-builder-registration-default-gas-limit=36000000
teku_validator_container_volumes:
- "{{ teku_validator_datadir }}:/validator-data"
teku_validator_datadir: /data/teku-validator

0 comments on commit e3546e2

Please sign in to comment.