Skip to content

Commit 48ac902

Browse files
committed
fix: build errors after rebase
1 parent e74d868 commit 48ac902

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

beacon_node/beacon_processor/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

beacon_node/network/src/sync/block_lookups/single_block_lookup.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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)]
442442
pub 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,

0 commit comments

Comments
 (0)