Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ferranbt committed Feb 11, 2025
1 parent f13a6bb commit 71dba27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/op-rbuilder/src/tester/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ impl<'a> BlockGenerator<'a> {
let transactions = if let Some(transactions) = transactions {
// prepend the block info transaction
let mut all_transactions = vec![block_info_tx];
all_transactions.extend(transactions.into_iter().map(|t| t.into()));
all_transactions.extend(transactions.into_iter().map(|t| t));
all_transactions
} else {
vec![block_info_tx]
Expand Down

0 comments on commit 71dba27

Please sign in to comment.