Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #34 from anton-rs/refcell/compute-pending-block
Browse files Browse the repository at this point in the history
feat(node): Add Compute Pending Block Rollup CLI Option
  • Loading branch information
refcell authored Aug 1, 2023
2 parents 4e62e9e + b042e6f commit e25952b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bin/reth/src/args/rollup_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,11 @@ pub struct RollupArgs {
/// Disable transaction pool gossip
#[arg(long = "rollup.disable-tx-pool-gossip")]
pub disable_txpool_gossip: bool,

/// By default the pending block equals the latest block
/// to save resources and not leak txs from the tx-pool,
/// this flag enables computing of the pending block
/// from the tx-pool instead.
#[arg(long = "rollup.compute-pending-block")]
pub compute_pending_block: bool,
}

0 comments on commit e25952b

Please sign in to comment.