Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
joshieDo committed Oct 2, 2024
1 parent 76224ec commit b9f9765
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/storage/provider/src/providers/blockchain_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -926,9 +926,7 @@ impl<N: ProviderNodeTypes> TransactionsProvider for BlockchainProvider2<N> {
self.get_in_memory_or_storage_by_tx_range(
range,
|db_provider, db_range| db_provider.senders_by_tx_range(db_range),
|index_range, block_state| {
Ok(block_state.block_ref().senders[index_range].to_vec())
},
|index_range, block_state| Ok(block_state.block_ref().senders[index_range].to_vec()),
)
}

Expand Down

0 comments on commit b9f9765

Please sign in to comment.