Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Oct 30, 2024
1 parent d3e4638 commit 24a59bf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/blockchain-tree/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,11 @@ mod tests {
let chain = AppendableChain::new(Chain::new(
vec![block.clone()],
ExecutionOutcome {
receipts: receipts.iter().map(|receipt| Some(receipt.clone())).collect::<Vec<_>>().into()
..Default::default()
receipts: receipts
.iter()
.map(|receipt| Some(receipt.clone()))
.collect::<Vec<_>>()
.into()..Default::default(),
},
Default::default(),
));
Expand Down

0 comments on commit 24a59bf

Please sign in to comment.