diff --git a/beacon_node/beacon_chain/src/sync_committee_rewards.rs b/beacon_node/beacon_chain/src/sync_committee_rewards.rs index 561fed1a8..2221aa1d5 100644 --- a/beacon_node/beacon_chain/src/sync_committee_rewards.rs +++ b/beacon_node/beacon_chain/src/sync_committee_rewards.rs @@ -6,10 +6,10 @@ use slog::error; use state_processing::per_block_processing::altair::sync_committee::compute_sync_aggregate_rewards; use std::collections::HashMap; use store::RelativeEpoch; -use types::{BeaconBlockRef, BeaconState, ExecPayload}; +use types::{AbstractExecPayload, BeaconBlockRef, BeaconState}; impl BeaconChain { - pub fn compute_sync_committee_rewards>( + pub fn compute_sync_committee_rewards>( &self, block: BeaconBlockRef<'_, T::EthSpec, Payload>, state: &mut BeaconState,