use crate::max_cover::MaxCover; use state_processing::common::{get_attesting_indices, get_base_reward}; use std::collections::HashMap; use types::{Attestation, BeaconState, BitList, ChainSpec, EthSpec}; #[derive(Debug, Clone)] pub struct AttMaxCover<'a, T: EthSpec> { /// Underlying attestation. att: &'a Attestation, /// Mapping of validator indices and their rewards. fresh_validators_rewards: HashMap, } impl<'a, T: EthSpec> AttMaxCover<'a, T> { pub fn new( att: &'a Attestation, state: &BeaconState, total_active_balance: u64, spec: &ChainSpec, ) -> Option { let fresh_validators = earliest_attestation_validators(att, state); let committee = state .get_beacon_committee(att.data.slot, att.data.index) .ok()?; let indices = get_attesting_indices::(committee.committee, &fresh_validators).ok()?; let fresh_validators_rewards: HashMap = indices .iter() .map(|i| *i as u64) .flat_map(|validator_index| { let reward = get_base_reward(state, validator_index as usize, total_active_balance, spec) .ok()? / spec.proposer_reward_quotient; Some((validator_index, reward)) }) .collect(); Some(Self { att, fresh_validators_rewards, }) } } impl<'a, T: EthSpec> MaxCover for AttMaxCover<'a, T> { type Object = Attestation; type Set = HashMap; fn object(&self) -> &Attestation { self.att } fn covering_set(&self) -> &HashMap { &self.fresh_validators_rewards } /// Sneaky: we keep all the attestations together in one bucket, even though /// their aggregation bitfields refer to different committees. In order to avoid /// confusing committees when updating covering sets, we update only those attestations /// whose slot and index match the attestation being included in the solution, by the logic /// that a slot and index uniquely identify a committee. fn update_covering_set( &mut self, best_att: &Attestation, covered_validators: &HashMap, ) { if self.att.data.slot == best_att.data.slot && self.att.data.index == best_att.data.index { self.fresh_validators_rewards .retain(|k, _| !covered_validators.contains_key(k)) } } fn score(&self) -> usize { self.fresh_validators_rewards.values().sum::() as usize } } /// Extract the validators for which `attestation` would be their earliest in the epoch. /// /// The reward paid to a proposer for including an attestation is proportional to the number /// of validators for which the included attestation is their first in the epoch. The attestation /// is judged against the state's `current_epoch_attestations` or `previous_epoch_attestations` /// depending on when it was created, and all those validators who have already attested are /// removed from the `aggregation_bits` before returning it. // TODO: This could be optimised with a map from validator index to whether that validator has // attested in each of the current and previous epochs. Currently quadratic in number of validators. pub fn earliest_attestation_validators( attestation: &Attestation, state: &BeaconState, ) -> BitList { // Bitfield of validators whose attestations are new/fresh. let mut new_validators = attestation.aggregation_bits.clone(); let state_attestations = if attestation.data.target.epoch == state.current_epoch() { &state.current_epoch_attestations } else if attestation.data.target.epoch == state.previous_epoch() { &state.previous_epoch_attestations } else { return BitList::with_capacity(0).unwrap(); }; state_attestations .iter() // In a single epoch, an attester should only be attesting for one slot and index. .filter(|existing_attestation| { existing_attestation.data.slot == attestation.data.slot && existing_attestation.data.index == attestation.data.index }) .for_each(|existing_attestation| { // Remove the validators who have signed the existing attestation (they are not new) new_validators.difference_inplace(&existing_attestation.aggregation_bits); }); new_validators }