Skip to content

Commit

Permalink
chore(sidecar): restore default value for --builder-private-key
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Dec 9, 2024
1 parent 736ca29 commit 29b1ff2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 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 @@ -78,7 +78,7 @@ pub struct Opts {
pub fee_recipient: Address,
/// Secret BLS key to sign fallback payloads with. This can be any key. You can generate one
/// with the `bolt` CLI tool, using `bolt generate bls`.
#[clap(long, env = "BOLT_SIDECAR_BUILDER_PRIVATE_KEY")]
#[clap(long, env = "BOLT_SIDECAR_BUILDER_PRIVATE_KEY", default_value_t = BlsSecretKeyWrapper::random())]
pub builder_private_key: BlsSecretKeyWrapper,
/// Secret ECDSA key used to sign commitment messages on behalf of your validators.
/// This MUST be set to the private key of your operator address registered in a restaking protocol.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ BOLT_SIDECAR_FEE_RECIPIENT=
# Secret ECDSA key used to sign commitment messages on behalf of your validators.
# This MUST be set to the private key of your operator address registered in a restaking protocol.
BOLT_SIDECAR_COMMITMENT_PRIVATE_KEY=
# Secret BLS key to sign fallback payloads with. This can be any key. You can generate one
# with the `bolt` CLI tool, using `bolt generate bls`.
BOLT_SIDECAR_BUILDER_PRIVATE_KEY=

# Commitments limits
# Max number of commitments to accept per block
Expand Down

0 comments on commit 29b1ff2

Please sign in to comment.