File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
network/src/sync/block_lookups Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -1421,6 +1421,9 @@ impl<E: EthSpec> BeaconProcessor<E> {
14211421 Work :: DataColumnsByRangeRequest { .. } => {
14221422 dcbrange_queue. push ( work, work_id)
14231423 }
1424+ Work :: ExecutionProofsByRootsRequest { .. } => {
1425+ blob_broots_queue. push ( work, work_id)
1426+ }
14241427 Work :: UnknownLightClientOptimisticUpdate { .. } => {
14251428 unknown_light_client_update_queue. push ( work, work_id)
14261429 }
@@ -1474,6 +1477,7 @@ impl<E: EthSpec> BeaconProcessor<E> {
14741477 WorkType :: BlobsByRootsRequest => blob_broots_queue. len ( ) ,
14751478 WorkType :: DataColumnsByRootsRequest => dcbroots_queue. len ( ) ,
14761479 WorkType :: DataColumnsByRangeRequest => dcbrange_queue. len ( ) ,
1480+ WorkType :: ExecutionProofsByRootsRequest => blob_broots_queue. len ( ) ,
14771481 WorkType :: GossipBlsToExecutionChange => {
14781482 gossip_bls_to_execution_change_queue. len ( )
14791483 }
Original file line number Diff line number Diff line change @@ -437,10 +437,10 @@ impl<E: EthSpec> CustodyRequestState<E> {
437437}
438438
439439/// The state of the execution proof request component of a `SingleBlockLookup`.
440- #[ derive( Derivative ) ]
441- #[ derivative ( Debug ) ]
440+ #[ derive( Educe ) ]
441+ #[ educe ( Debug ) ]
442442pub struct ProofRequestState {
443- #[ derivative ( Debug = " ignore" ) ]
443+ #[ educe ( Debug ( ignore) ) ]
444444 pub block_root : Hash256 ,
445445 pub state : SingleLookupRequestState < Vec < Arc < ExecutionProof > > > ,
446446 pub min_proofs_required : usize ,
You can’t perform that action at this time.
0 commit comments