Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed May 14, 2024
1 parent b82cbc6 commit 2ac26c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sequencer/src/bin/bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ struct Deposit {

/// Espresso query service provider.
///
/// This must point to an Espresso node running the node, availability, and Merklized state
/// APIs.
/// This must point to an Espresso node running the /availability, /node and Merklized state
/// (/fee-state and /block-state) APIs.
#[clap(short, long, env = "ESPRESSO_PROVIDER")]
espresso_provider: Url,

Expand Down
4 changes: 4 additions & 0 deletions sequencer/src/chain_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ pub struct ChainConfig {
#[clap(long, env = "ESPRESSO_SEQUENCER_FEE_CONTRACT_PROXY_ADDRESS")]
pub fee_contract: Option<Address>,
/// Account that receives sequencing fees.
///
/// This account in the Espresso fee ledger will always receive every fee paid in Espresso,
/// regardless of whether or not their is a `fee_contract` deployed. Once deployed, the fee
/// contract can decide what to do with tokens locked in this burner account in Espresso.
#[clap(
long,
env = "ESPRESSO_SEQUENCER_FEE_BURN_ACCOUNT",
Expand Down

0 comments on commit 2ac26c0

Please sign in to comment.