Skip to content

Commit

Permalink
log base_fee in builders
Browse files Browse the repository at this point in the history
'cause its important
  • Loading branch information
tbro committed Sep 5, 2024
1 parent 7d7df27 commit 90af5e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions builder/src/bin/permissionless-builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ async fn run<V: Versions>(
build_instance_state::<V>(genesis.chain_config, l1_params, opt.state_peers).unwrap();

let base_fee = genesis.max_base_fee();
tracing::info!(?base_fee, "base_fee");

let validated_state = ValidatedState::genesis(&instance_state).0;

Expand Down
1 change: 1 addition & 0 deletions marketplace-builder/src/bin/marketplace-builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ async fn run<V: Versions>(
build_instance_state::<V>(genesis.chain_config, l1_params, opt.state_peers).unwrap();

let base_fee = genesis.max_base_fee();
tracing::info!(?base_fee, "base_fee");

let validated_state = ValidatedState::genesis(&instance_state).0;

Expand Down

0 comments on commit 90af5e8

Please sign in to comment.