Skip to content

Commit eb06a14

Browse files
authored
Merge of #6589
2 parents d3aa3e4 + 11cf30a commit eb06a14

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

beacon_node/lighthouse_network/src/service/api_types.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ pub struct SamplingRequestId(pub usize);
6767
#[derive(Debug, Hash, PartialEq, Eq, Clone, Copy)]
6868
pub struct CustodyId {
6969
pub requester: CustodyRequester,
70-
pub req_id: Id,
7170
}
7271

7372
/// Downstream components that perform custody by root requests.

beacon_node/network/src/sync/network_context.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -763,8 +763,7 @@ impl<T: BeaconChainTypes> SyncNetworkContext<T> {
763763
let requester = CustodyRequester(id);
764764
let mut request = ActiveCustodyRequest::new(
765765
block_root,
766-
// TODO(das): req_id is duplicated here, also present in id
767-
CustodyId { requester, req_id },
766+
CustodyId { requester },
768767
&custody_indexes_to_fetch,
769768
self.log.clone(),
770769
);

0 commit comments

Comments
 (0)