-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Roberto Bayardo <[email protected]> Co-authored-by: refcell.eth <[email protected]> Co-authored-by: Roman Krasiuk <[email protected]> Co-authored-by: refcell <[email protected]> Co-authored-by: nicolas <[email protected]>
- Loading branch information
Showing
105 changed files
with
33,415 additions
and
408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
//! clap [Args](clap::Args) for op-reth rollup configuration | ||
|
||
/// Parameters for rollup configuration | ||
#[derive(Debug, clap::Args)] | ||
#[command(next_help_heading = "Rollup")] | ||
pub struct RollupArgs { | ||
/// HTTP endpoint for the sequencer mempool | ||
#[arg(long = "rollup.sequencer-http", value_name = "HTTP_URL")] | ||
pub sequencer_http: Option<String>, | ||
|
||
/// Disable transaction pool gossip | ||
#[arg(long = "rollup.disable-tx-pool-gossip")] | ||
pub disable_txpool_gossip: bool, | ||
|
||
/// Enable walkback to genesis on startup. This is useful for re-validating the existing DB | ||
/// prior to beginning normal syncing. | ||
#[arg(long = "rollup.enable-genesis-walkback")] | ||
pub enable_genesis_walkback: bool, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.