Skip to content

Commit

Permalink
clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vbar committed Jun 27, 2024
1 parent cbc8f50 commit 4d9c4f7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/node/in_memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1016,8 +1016,10 @@ impl<S: ForkSource + std::fmt::Debug + Clone> InMemoryNode<S> {
create_empty_block(0, NON_FORK_FIRST_BLOCK_TIMESTAMP, 0, None),
);

let mut fee_input_provider = TestNodeFeeInputProvider::default();
fee_input_provider.l1_gas_price = l1_gas_price;
let fee_input_provider = TestNodeFeeInputProvider {
l1_gas_price,
..Default::default()
};
InMemoryNodeInner {
current_timestamp: NON_FORK_FIRST_BLOCK_TIMESTAMP,
current_batch: 0,
Expand Down

0 comments on commit 4d9c4f7

Please sign in to comment.