nimbus.prater: use stable instead of unstable branch

Avoid an RPC bug found in `unstable` for Dencun upgrade:
https://github.com/status-im/nimbus-eth2/issues/5753

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-01-16 09:26:17 +03:00
parent 1253d61233
commit c48ac78797
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 4 additions and 1 deletions

View File

@ -48,7 +48,10 @@ beacon_node_era_dir_path: '{{ nimbus_era_files_timer_path }}'
beacon_node_repo_branch: '{{ node_name_to_branch_map.get(node.branch, node.branch) }}' beacon_node_repo_branch: '{{ node_name_to_branch_map.get(node.branch, node.branch) }}'
# We map short names to branches to avoid too long service names. # We map short names to branches to avoid too long service names.
node_name_to_branch_map: node_name_to_branch_map:
libp2p: 'nim-libp2p-auto-bump-unstable' # Avoid RPC but in current 'unstable' branch.
# https://github.com/status-im/nimbus-eth2/issues/5753
unstable: 'stable'
libp2p: 'nim-libp2p-auto-bump-unstable'
# Ports # Ports
beacon_node_discovery_port: '{{ 9000 + idx }}' beacon_node_discovery_port: '{{ 9000 + idx }}'
beacon_node_listening_port: '{{ 9000 + idx }}' beacon_node_listening_port: '{{ 9000 + idx }}'