Skip to content

Commit 285de8b

Browse files
committed
Fixed a comp issue
1 parent 05fa538 commit 285de8b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

validator/src/commands/run/execute.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,9 @@ pub fn execute(
921921

922922
let tpu_quic_server_config = QuicServerParams {
923923
max_connections_per_peer: tpu_max_connections_per_peer.try_into().unwrap(),
924-
max_unstaked_connections_per_ipaddr: tpu_max_unstaked_connections_per_ipaddr,
924+
max_unstaked_connections_per_ipaddr: tpu_max_unstaked_connections_per_ipaddr
925+
.try_into()
926+
.unwrap(),
925927
max_staked_connections: tpu_max_staked_connections.try_into().unwrap(),
926928
max_unstaked_connections: tpu_max_unstaked_connections.try_into().unwrap(),
927929
max_streams_per_ms,

0 commit comments

Comments
 (0)