We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b699b58 + 58bbebe commit 72d2d30Copy full SHA for 72d2d30
2 files changed
src/bin/keeper.rs
@@ -107,7 +107,7 @@ struct TickContext {
107
#[tokio::main]
108
async fn main() -> Result<()> {
109
tracing_subscriber::registry()
110
- .with(fmt::layer().with_ansi(true))
+ .with(fmt::layer())
111
.with(EnvFilter::from_default_env().add_directive(tracing::Level::INFO.into()))
112
.init();
113
src/config/keeper.rs
@@ -42,7 +42,7 @@ pub struct CliArgs {
42
pub private_key: String,
43
44
/// ETH value (wei) to forward for L1 -> L2 bridge messages
45
- #[arg(long, env = "L1_BRIDGE_VALUE_WEI")]
+ #[arg(long, env = "L1_BRIDGE_VALUE_WEI", default_value_t = Default::default())]
46
pub l1_bridge_value_wei: U256,
47
48
/// Lookback blocks for historical event queries
0 commit comments