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 40eea59 commit d49de65Copy full SHA for d49de65
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
@@ -164,6 +164,7 @@ async fn peertest_validate_pre_merge_header_by_number() {
164
handle.stop().unwrap();
165
166
167
+#[ignore]
168
#[tokio::test(flavor = "multi_thread")]
169
#[serial]
170
async fn peertest_invalidate_header_by_hash() {
0 commit comments