Skip to content

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed May 8, 2024
1 parent 9cf899a commit d1a138c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion builder/src/permissioned.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ pub async fn init_node<P: SequencerPersistence, Ver: StaticVersionType + 'static

let instance_state = NodeState::new(
node_index,
ChainConfig::new(0, max_block_size, base_fee),
ChainConfig {
max_block_size,
base_fee: base_fee.into(),
..Default::default()
},
l1_client,
Arc::new(StatePeers::<Ver>::from_urls(network_params.state_peers)),
);
Expand Down

0 comments on commit d1a138c

Please sign in to comment.