File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ test_backfill = []
2020[dev-dependencies ]
2121criterion = { workspace = true }
2222maplit = { workspace = true }
23- serde_json = { workspace = true }
2423mockall = { workspace = true }
2524mockall_double = { workspace = true }
25+ serde_json = { workspace = true }
2626
2727[dependencies ]
2828alloy-primitives = { workspace = true }
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ fn expect_fork_choice_contains_block(
137137) {
138138 mock_adapter
139139 . expect_fork_choice_contains_block ( )
140- . returning ( move |block_root| block_roots. contains ( & block_root) ) ;
140+ . returning ( move |block_root| block_roots. contains ( block_root) ) ;
141141}
142142
143143fn expect_get_blobs_v2_response (
@@ -181,6 +181,7 @@ fn create_test_block_and_blobs(
181181 ( Arc :: new ( block) , blob_and_proofs)
182182}
183183
184+ #[ allow( clippy:: type_complexity) ]
184185fn mock_publish_fn ( ) -> (
185186 impl Fn ( BlobsOrDataColumns < T > ) + Send + ' static ,
186187 Arc < Mutex < Vec < BlobsOrDataColumns < T > > > > ,
You can’t perform that action at this time.
0 commit comments