File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -231,6 +231,7 @@ if [ "$CC_CLIENT" = "prysm" ]; then
231231 --rpc-port ${BN_RPC_PORT:- 5053} \
232232 --grpc-gateway-host 0.0.0.0 \
233233 --grpc-gateway-port ${BN_API_PORT:- 5052} \
234+ --p2p-quic-port ${BN_P2P_QUIC_PORT:- 8001} \
234235 --eth1-header-req-limit 150 \
235236 --jwt-secret=/secrets/jwtsecret \
236237 --api-timeout 20s \
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ services:
1818 - " {{$p2p}}:{{$p2p}}/tcp"
1919 {{- if eq .ConsensusClient.String " lighthouse" }}
2020 - " {{.Lighthouse.P2pQuicPort}}:{{.Lighthouse.P2pQuicPort}}/udp"
21+ {{- else if eq .ConsensusClient.String " prysm" }}
22+ - " {{.Prysm.P2pQuicPort}}:{{.Prysm.P2pQuicPort}}/udp"
2123 {{- end }}
2224 {{- range $entry := .GetBnOpenPorts }}
2325 - " {{$entry}}"
@@ -64,6 +66,7 @@ services:
6466 - TEKU_ARCHIVE_MODE= {{.Teku.ArchiveMode }}
6567 {{- else if eq .ConsensusClient.String " prysm" }}
6668 - BN_RPC_PORT= {{.Prysm.RpcPort }}
69+ - BN_P2P_QUIC_PORT= {{.Prysm.P2pQuicPort }}
6770 {{- else if eq .ConsensusClient.String " nimbus" }}
6871 - NIMBUS_PRUNING_MODE= {{.Nimbus.PruningMode }}
6972 {{- else if eq .ConsensusClient.String " lighthouse" }}
You can’t perform that action at this time.
0 commit comments