Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add "last-block" command line flag to trin execution #1495

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions trin-execution/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ pub struct TrinExecutionConfig {
)]
pub ephemeral: bool,

#[arg(
long,
help = "The last block that should be executed. This is useful if execution should stop early."
)]
pub last_block: Option<u64>,

#[arg(
long,
default_value = "none",
Expand Down
6 changes: 4 additions & 2 deletions trin-execution/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,11 @@ async fn main() -> anyhow::Result<()> {
tx.send(()).expect("signal ctrl_c should never fail");
});

let end_block = get_spec_block_number(SpecId::CANCUN);
let last_block = trin_execution_config
.last_block
.unwrap_or(get_spec_block_number(SpecId::CANCUN));
trin_execution
.process_range_of_blocks(end_block, Some(rx))
.process_range_of_blocks(last_block, Some(rx))
.await?;

Ok(())
Expand Down
Loading