Skip to content

Commit

Permalink
sequencer_end_height -> sequencer_stop_height
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperFluffy committed Feb 4, 2025
1 parent 0be83ab commit 50010e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/astria-conductor/src/sequencer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ impl RunningReader {
} = reader;

let next_expected_height = rollup_state.next_expected_soft_sequencer_height();
let sequencer_end_height = rollup_state
let sequencer_stop_height = rollup_state
.sequencer_stop_height()
.wrap_err("failed to obtain sequencer stop height")?;

Expand All @@ -163,7 +163,7 @@ impl RunningReader {
let blocks_from_heights = BlocksFromHeightStream::new(
rollup_state.rollup_id(),
next_expected_height,
sequencer_end_height,
sequencer_stop_height,
sequencer_grpc_client,
);

Expand Down

0 comments on commit 50010e9

Please sign in to comment.