Skip to content

Commit

Permalink
Merge pull request #115 from ChorusOne/fix-parameters-passing
Browse files Browse the repository at this point in the history
Fix short options to allow startup
  • Loading branch information
merklefruit authored Jul 4, 2024
2 parents 9836182 + 9c67439 commit 025d296
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bolt-sidecar/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub struct Opts {
pub(super) fee_recipient: Address,
/// Secret BLS key to sign fallback payloads with
/// (If not provided, a random key will be used)
#[clap(short = 'k', long)]
#[clap(short = 'K', long)]
pub(super) builder_private_key: Option<String>,
/// Chain config for the chain on which the sidecar is running
#[clap(flatten)]
Expand Down
2 changes: 1 addition & 1 deletion bolt-sidecar/src/config/signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ pub struct SigningOpts {
#[clap(short = 'k', long)]
pub(super) private_key: Option<String>,
/// URL for the commit-boost sidecar
#[clap(short = 'C', long, conflicts_with("private_key"))]
#[clap(short = 'B', long, conflicts_with("private_key"))]
pub(super) commit_boost_url: Option<String>,
}

0 comments on commit 025d296

Please sign in to comment.