nimbus.sepolia: debug flag for old attestation stability

As requested by Dustin.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-07-06 08:32:22 +02:00
parent cec778f4f1
commit 4480d292be
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ beacon_node_service_name: 'beacon-node-{{ beacon_node_network }}-{{ beacon_node_
beacon_node_network: 'sepolia'
beacon_node_repo_branch: '{{ node.get("branch", "unstable") }}'
beacon_node_build_nim_flags: '-d:noSignalHandler {{ node.get("nim_flags", "") }}'
beacon_node_extra_flags: '{{ node.extra_flags if node.extra_flags is defined else [] }}'
beacon_node_payload_builder_enabled: '{{ node.get("payload_builder", false) }}'
beacon_node_payload_builder_url: 'https://builder-relay-sepolia.flashbots.net/'
# Builds
@ -86,5 +87,5 @@ nodes_layout:
'linux-01.ih-eu-mda1.nimbus.sepolia':
- { start: 0, end: 25, validator_client: true }
- { start: 25, end: 50, validator_client: false, payload_builder: true }
- { start: 50, end: 75, validator_client: false }
- { start: 50, end: 75, validator_client: false, extra_flags: ['--debug-use-old-attestation-stability-subnets=false'] }
- { start: 75, end: 100, validator_client: false, nim_flags: '-d:json_rpc_websocket_package=websock' }