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

docs: README #61

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
fix
  • Loading branch information
ratankaliani committed Aug 16, 2024
commit 53170d9fcba1c52fcdb07691f6fccccd91b46b9e
6 changes: 3 additions & 3 deletions prover-server/bin/fetch_and_save_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ struct Args {
#[arg(short, long)]
chain_id: u64,

/// Agg proof
/// Aggregate proof.
#[arg(short, long)]
agg_proof: bool,

/// Start L2 block number
/// Start L2 block number.
#[arg(short, long, required = false)]
start: Option<u64>,

/// End L2 block number
/// End L2 block number.
#[arg(short, long, required = false)]
end: Option<u64>,
}
Expand Down
Loading