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 @@ -186,7 +186,8 @@ impl NodeSetup {
186
186
self . batcher_index
187
187
}
188
188
189
- pub fn get_state_sync_index ( & self ) -> usize {
189
+ pub fn get_state_sync_identifier ( & self ) -> usize {
190
+ // TODO(Nadin): Change return type to service name.
190
191
self . state_sync_index
191
192
}
192
193
@@ -437,7 +438,7 @@ impl IntegrationTestManager {
437
438
"Waiting for state sync to reach block {expected_block_number} in sequencer \
438
439
{} executable {}.",
439
440
running_node_setup. get_node_index( ) . unwrap( ) ,
440
- running_node_setup. get_state_sync_index ( ) ,
441
+ running_node_setup. get_state_sync_identifier ( ) ,
441
442
) ) ,
442
443
) ;
443
444
@@ -711,7 +712,7 @@ impl IntegrationTestManager {
711
712
let batcher_monitoring_client = node_setup. batcher_monitoring_client ( ) ;
712
713
let batcher_identifier = node_setup. get_batcher_identifier ( ) ;
713
714
let state_sync_monitoring_client = node_setup. state_sync_monitoring_client ( ) ;
714
- let state_sync_index = node_setup. get_state_sync_index ( ) ;
715
+ let state_sync_index = node_setup. get_state_sync_identifier ( ) ;
715
716
await_block (
716
717
batcher_monitoring_client,
717
718
batcher_identifier,
You can’t perform that action at this time.
0 commit comments