File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
crates/apollo_integration_tests/src Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,8 @@ impl NodeSetup {
185
185
self . batcher_index
186
186
}
187
187
188
- pub fn get_state_sync_index ( & self ) -> usize {
188
+ pub fn get_state_sync_identifier ( & self ) -> usize {
189
+ // TODO(Nadin): Change return type to service name.
189
190
self . state_sync_index
190
191
}
191
192
@@ -436,7 +437,7 @@ impl IntegrationTestManager {
436
437
"Waiting for state sync to reach block {expected_block_number} in sequencer \
437
438
{} executable {}.",
438
439
running_node_setup. get_node_index( ) . unwrap( ) ,
439
- running_node_setup. get_state_sync_index ( ) ,
440
+ running_node_setup. get_state_sync_identifier ( ) ,
440
441
) ) ,
441
442
) ;
442
443
@@ -710,7 +711,7 @@ impl IntegrationTestManager {
710
711
let batcher_monitoring_client = node_setup. batcher_monitoring_client ( ) ;
711
712
let batcher_identifier = node_setup. get_batcher_identifier ( ) ;
712
713
let state_sync_monitoring_client = node_setup. state_sync_monitoring_client ( ) ;
713
- let state_sync_index = node_setup. get_state_sync_index ( ) ;
714
+ let state_sync_index = node_setup. get_state_sync_identifier ( ) ;
714
715
await_block (
715
716
batcher_monitoring_client,
716
717
batcher_identifier,
You can’t perform that action at this time.
0 commit comments