There was an error while loading. Please reload this page.
1 parent adf4592 commit bd92b28Copy full SHA for bd92b28
1 file changed
bin/ream/src/main.rs
@@ -2473,13 +2473,13 @@ mod tests {
2473
.await
2474
{
2475
Ok(peer_counts) => peer_counts,
2476
- Err(peer_counts) => {
+ Err(err) => {
2477
shutdown_beacon_test_node(&node_4_executor_handle, node_4_handle).await;
2478
shutdown_beacon_test_node(&node_3_executor_handle, node_3_handle).await;
2479
shutdown_beacon_test_node(&node_2_executor_handle, node_2_handle).await;
2480
shutdown_beacon_test_node(&node_1_executor_handle, node_1_handle).await;
2481
mock_execution_server.stop().await;
2482
- panic!("Timed out waiting for beacon nodes to connect: {peer_counts:?}");
+ panic!("Timed out waiting for beacon nodes to connect: {err:?}");
2483
}
2484
};
2485
0 commit comments