We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05fa538 commit 285de8bCopy full SHA for 285de8b
1 file changed
validator/src/commands/run/execute.rs
@@ -921,7 +921,9 @@ pub fn execute(
921
922
let tpu_quic_server_config = QuicServerParams {
923
max_connections_per_peer: tpu_max_connections_per_peer.try_into().unwrap(),
924
- max_unstaked_connections_per_ipaddr: tpu_max_unstaked_connections_per_ipaddr,
+ max_unstaked_connections_per_ipaddr: tpu_max_unstaked_connections_per_ipaddr
925
+ .try_into()
926
+ .unwrap(),
927
max_staked_connections: tpu_max_staked_connections.try_into().unwrap(),
928
max_unstaked_connections: tpu_max_unstaked_connections.try_into().unwrap(),
929
max_streams_per_ms,
0 commit comments