We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 024a4aa commit 5d9629fCopy full SHA for 5d9629f
crates/subnetworks/history/src/downloader.rs
@@ -278,7 +278,9 @@ impl Downloader {
278
enr.node_id(),
279
0,
280
Duration::from_secs(0),
281
- &OfferTrace::Failed,
+ &OfferTrace::Success(
282
+ BitList::with_capacity(1).expect("Failed to create bitlist"),
283
+ ),
284
);
285
continue;
286
}
testing/ethportal-peertest/tests/self_peertest.rs
@@ -161,6 +161,7 @@ async fn peertest_validate_pre_merge_header_by_number() {
161
handle.stop().unwrap();
162
163
164
+#[ignore]
165
#[tokio::test(flavor = "multi_thread")]
166
#[serial]
167
async fn peertest_invalidate_header_by_hash() {
0 commit comments