Aggregate subsets (#3493)
## Issue Addressed Resolves #3238 ## Proposed Changes Please list or describe the changes introduced by this PR. ## Additional Info Please provide any additional information. For example, future considerations or information useful for reviewers.
This commit is contained in:
parent
cc780aae3e
commit
448d3ec9b3
5
Cargo.lock
generated
5
Cargo.lock
generated
@ -661,6 +661,7 @@ dependencies = [
|
|||||||
"tokio",
|
"tokio",
|
||||||
"tokio-stream",
|
"tokio-stream",
|
||||||
"tree_hash",
|
"tree_hash",
|
||||||
|
"tree_hash_derive",
|
||||||
"types",
|
"types",
|
||||||
"unused_port",
|
"unused_port",
|
||||||
]
|
]
|
||||||
@ -7849,9 +7850,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ssz_types"
|
name = "ssz_types"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8052a1004e979c0be24b9e55940195553103cc57d0b34f7e2c4e32793325e402"
|
checksum = "e43767964a80b2fdeda7a79a57a2b6cbca966688d5b81da8fe91140a94f552a1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arbitrary",
|
"arbitrary",
|
||||||
"derivative",
|
"derivative",
|
||||||
|
@ -32,9 +32,10 @@ sloggers = { version = "2.1.1", features = ["json"] }
|
|||||||
slot_clock = { path = "../../common/slot_clock" }
|
slot_clock = { path = "../../common/slot_clock" }
|
||||||
ethereum_hashing = "1.0.0-beta.2"
|
ethereum_hashing = "1.0.0-beta.2"
|
||||||
ethereum_ssz = "0.5.0"
|
ethereum_ssz = "0.5.0"
|
||||||
ssz_types = "0.5.0"
|
ssz_types = "0.5.3"
|
||||||
ethereum_ssz_derive = "0.5.0"
|
ethereum_ssz_derive = "0.5.0"
|
||||||
state_processing = { path = "../../consensus/state_processing" }
|
state_processing = { path = "../../consensus/state_processing" }
|
||||||
|
tree_hash_derive = "0.5.0"
|
||||||
tree_hash = "0.5.0"
|
tree_hash = "0.5.0"
|
||||||
types = { path = "../../consensus/types" }
|
types = { path = "../../consensus/types" }
|
||||||
tokio = "1.14.0"
|
tokio = "1.14.0"
|
||||||
|
@ -117,14 +117,14 @@ pub enum Error {
|
|||||||
///
|
///
|
||||||
/// The peer has sent an invalid message.
|
/// The peer has sent an invalid message.
|
||||||
AggregatorPubkeyUnknown(u64),
|
AggregatorPubkeyUnknown(u64),
|
||||||
/// The attestation has been seen before; either in a block, on the gossip network or from a
|
/// The attestation or a superset of this attestation's aggregations bits for the same data
|
||||||
/// local validator.
|
/// has been seen before; either in a block, on the gossip network or from a local validator.
|
||||||
///
|
///
|
||||||
/// ## Peer scoring
|
/// ## Peer scoring
|
||||||
///
|
///
|
||||||
/// It's unclear if this attestation is valid, however we have already observed it and do not
|
/// It's unclear if this attestation is valid, however we have already observed it and do not
|
||||||
/// need to observe it again.
|
/// need to observe it again.
|
||||||
AttestationAlreadyKnown(Hash256),
|
AttestationSupersetKnown(Hash256),
|
||||||
/// There has already been an aggregation observed for this validator, we refuse to process a
|
/// There has already been an aggregation observed for this validator, we refuse to process a
|
||||||
/// second.
|
/// second.
|
||||||
///
|
///
|
||||||
@ -268,7 +268,7 @@ enum CheckAttestationSignature {
|
|||||||
struct IndexedAggregatedAttestation<'a, T: BeaconChainTypes> {
|
struct IndexedAggregatedAttestation<'a, T: BeaconChainTypes> {
|
||||||
signed_aggregate: &'a SignedAggregateAndProof<T::EthSpec>,
|
signed_aggregate: &'a SignedAggregateAndProof<T::EthSpec>,
|
||||||
indexed_attestation: IndexedAttestation<T::EthSpec>,
|
indexed_attestation: IndexedAttestation<T::EthSpec>,
|
||||||
attestation_root: Hash256,
|
attestation_data_root: Hash256,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Wraps a `Attestation` that has been verified up until the point that an `IndexedAttestation` can
|
/// Wraps a `Attestation` that has been verified up until the point that an `IndexedAttestation` can
|
||||||
@ -467,14 +467,17 @@ impl<'a, T: BeaconChainTypes> IndexedAggregatedAttestation<'a, T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Ensure the valid aggregated attestation has not already been seen locally.
|
// Ensure the valid aggregated attestation has not already been seen locally.
|
||||||
let attestation_root = attestation.tree_hash_root();
|
let attestation_data = &attestation.data;
|
||||||
|
let attestation_data_root = attestation_data.tree_hash_root();
|
||||||
|
|
||||||
if chain
|
if chain
|
||||||
.observed_attestations
|
.observed_attestations
|
||||||
.write()
|
.write()
|
||||||
.is_known(attestation, attestation_root)
|
.is_known_subset(attestation, attestation_data_root)
|
||||||
.map_err(|e| Error::BeaconChainError(e.into()))?
|
.map_err(|e| Error::BeaconChainError(e.into()))?
|
||||||
{
|
{
|
||||||
return Err(Error::AttestationAlreadyKnown(attestation_root));
|
metrics::inc_counter(&metrics::AGGREGATED_ATTESTATION_SUBSETS);
|
||||||
|
return Err(Error::AttestationSupersetKnown(attestation_data_root));
|
||||||
}
|
}
|
||||||
|
|
||||||
let aggregator_index = signed_aggregate.message.aggregator_index;
|
let aggregator_index = signed_aggregate.message.aggregator_index;
|
||||||
@ -520,7 +523,7 @@ impl<'a, T: BeaconChainTypes> IndexedAggregatedAttestation<'a, T> {
|
|||||||
if attestation.aggregation_bits.is_zero() {
|
if attestation.aggregation_bits.is_zero() {
|
||||||
Err(Error::EmptyAggregationBitfield)
|
Err(Error::EmptyAggregationBitfield)
|
||||||
} else {
|
} else {
|
||||||
Ok(attestation_root)
|
Ok(attestation_data_root)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -533,7 +536,7 @@ impl<'a, T: BeaconChainTypes> IndexedAggregatedAttestation<'a, T> {
|
|||||||
|
|
||||||
let attestation = &signed_aggregate.message.aggregate;
|
let attestation = &signed_aggregate.message.aggregate;
|
||||||
let aggregator_index = signed_aggregate.message.aggregator_index;
|
let aggregator_index = signed_aggregate.message.aggregator_index;
|
||||||
let attestation_root = match Self::verify_early_checks(signed_aggregate, chain) {
|
let attestation_data_root = match Self::verify_early_checks(signed_aggregate, chain) {
|
||||||
Ok(root) => root,
|
Ok(root) => root,
|
||||||
Err(e) => return Err(SignatureNotChecked(&signed_aggregate.message.aggregate, e)),
|
Err(e) => return Err(SignatureNotChecked(&signed_aggregate.message.aggregate, e)),
|
||||||
};
|
};
|
||||||
@ -568,7 +571,7 @@ impl<'a, T: BeaconChainTypes> IndexedAggregatedAttestation<'a, T> {
|
|||||||
Ok(IndexedAggregatedAttestation {
|
Ok(IndexedAggregatedAttestation {
|
||||||
signed_aggregate,
|
signed_aggregate,
|
||||||
indexed_attestation,
|
indexed_attestation,
|
||||||
attestation_root,
|
attestation_data_root,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -577,7 +580,7 @@ impl<'a, T: BeaconChainTypes> VerifiedAggregatedAttestation<'a, T> {
|
|||||||
/// Run the checks that happen after the indexed attestation and signature have been checked.
|
/// Run the checks that happen after the indexed attestation and signature have been checked.
|
||||||
fn verify_late_checks(
|
fn verify_late_checks(
|
||||||
signed_aggregate: &SignedAggregateAndProof<T::EthSpec>,
|
signed_aggregate: &SignedAggregateAndProof<T::EthSpec>,
|
||||||
attestation_root: Hash256,
|
attestation_data_root: Hash256,
|
||||||
chain: &BeaconChain<T>,
|
chain: &BeaconChain<T>,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
let attestation = &signed_aggregate.message.aggregate;
|
let attestation = &signed_aggregate.message.aggregate;
|
||||||
@ -587,13 +590,14 @@ impl<'a, T: BeaconChainTypes> VerifiedAggregatedAttestation<'a, T> {
|
|||||||
//
|
//
|
||||||
// It's important to double check that the attestation is not already known, otherwise two
|
// It's important to double check that the attestation is not already known, otherwise two
|
||||||
// attestations processed at the same time could be published.
|
// attestations processed at the same time could be published.
|
||||||
if let ObserveOutcome::AlreadyKnown = chain
|
if let ObserveOutcome::Subset = chain
|
||||||
.observed_attestations
|
.observed_attestations
|
||||||
.write()
|
.write()
|
||||||
.observe_item(attestation, Some(attestation_root))
|
.observe_item(attestation, Some(attestation_data_root))
|
||||||
.map_err(|e| Error::BeaconChainError(e.into()))?
|
.map_err(|e| Error::BeaconChainError(e.into()))?
|
||||||
{
|
{
|
||||||
return Err(Error::AttestationAlreadyKnown(attestation_root));
|
metrics::inc_counter(&metrics::AGGREGATED_ATTESTATION_SUBSETS);
|
||||||
|
return Err(Error::AttestationSupersetKnown(attestation_data_root));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Observe the aggregator so we don't process another aggregate from them.
|
// Observe the aggregator so we don't process another aggregate from them.
|
||||||
@ -653,7 +657,7 @@ impl<'a, T: BeaconChainTypes> VerifiedAggregatedAttestation<'a, T> {
|
|||||||
let IndexedAggregatedAttestation {
|
let IndexedAggregatedAttestation {
|
||||||
signed_aggregate,
|
signed_aggregate,
|
||||||
indexed_attestation,
|
indexed_attestation,
|
||||||
attestation_root,
|
attestation_data_root,
|
||||||
} = signed_aggregate;
|
} = signed_aggregate;
|
||||||
|
|
||||||
match check_signature {
|
match check_signature {
|
||||||
@ -677,7 +681,7 @@ impl<'a, T: BeaconChainTypes> VerifiedAggregatedAttestation<'a, T> {
|
|||||||
CheckAttestationSignature::No => (),
|
CheckAttestationSignature::No => (),
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Err(e) = Self::verify_late_checks(signed_aggregate, attestation_root, chain) {
|
if let Err(e) = Self::verify_late_checks(signed_aggregate, attestation_data_root, chain) {
|
||||||
return Err(SignatureValid(indexed_attestation, e));
|
return Err(SignatureValid(indexed_attestation, e));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -998,6 +998,17 @@ lazy_static! {
|
|||||||
"light_client_optimistic_update_verification_success_total",
|
"light_client_optimistic_update_verification_success_total",
|
||||||
"Number of light client optimistic updates verified for gossip"
|
"Number of light client optimistic updates verified for gossip"
|
||||||
);
|
);
|
||||||
|
/*
|
||||||
|
* Aggregate subset metrics
|
||||||
|
*/
|
||||||
|
pub static ref SYNC_CONTRIBUTION_SUBSETS: Result<IntCounter> = try_create_int_counter(
|
||||||
|
"beacon_sync_contribution_subsets_total",
|
||||||
|
"Count of new sync contributions that are subsets of already known aggregates"
|
||||||
|
);
|
||||||
|
pub static ref AGGREGATED_ATTESTATION_SUBSETS: Result<IntCounter> = try_create_int_counter(
|
||||||
|
"beacon_aggregated_attestation_subsets_total",
|
||||||
|
"Count of new aggregated attestations that are subsets of already known aggregates"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Scrape the `beacon_chain` for metrics that are not constantly updated (e.g., the present slot,
|
/// Scrape the `beacon_chain` for metrics that are not constantly updated (e.g., the present slot,
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
//! Provides an `ObservedAggregates` struct which allows us to reject aggregated attestations or
|
//! Provides an `ObservedAggregates` struct which allows us to reject aggregated attestations or
|
||||||
//! sync committee contributions if we've already seen them.
|
//! sync committee contributions if we've already seen them.
|
||||||
|
|
||||||
use std::collections::HashSet;
|
use crate::sync_committee_verification::SyncCommitteeData;
|
||||||
|
use ssz_types::{BitList, BitVector};
|
||||||
|
use std::collections::HashMap;
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
use tree_hash::TreeHash;
|
use tree_hash::TreeHash;
|
||||||
use types::consts::altair::{
|
use types::consts::altair::{
|
||||||
@ -10,8 +12,16 @@ use types::consts::altair::{
|
|||||||
use types::slot_data::SlotData;
|
use types::slot_data::SlotData;
|
||||||
use types::{Attestation, EthSpec, Hash256, Slot, SyncCommitteeContribution};
|
use types::{Attestation, EthSpec, Hash256, Slot, SyncCommitteeContribution};
|
||||||
|
|
||||||
pub type ObservedSyncContributions<E> = ObservedAggregates<SyncCommitteeContribution<E>, E>;
|
pub type ObservedSyncContributions<E> = ObservedAggregates<
|
||||||
pub type ObservedAggregateAttestations<E> = ObservedAggregates<Attestation<E>, E>;
|
SyncCommitteeContribution<E>,
|
||||||
|
E,
|
||||||
|
BitVector<<E as types::EthSpec>::SyncSubcommitteeSize>,
|
||||||
|
>;
|
||||||
|
pub type ObservedAggregateAttestations<E> = ObservedAggregates<
|
||||||
|
Attestation<E>,
|
||||||
|
E,
|
||||||
|
BitList<<E as types::EthSpec>::MaxValidatorsPerCommittee>,
|
||||||
|
>;
|
||||||
|
|
||||||
/// A trait use to associate capacity constants with the type being stored in `ObservedAggregates`.
|
/// A trait use to associate capacity constants with the type being stored in `ObservedAggregates`.
|
||||||
pub trait Consts {
|
pub trait Consts {
|
||||||
@ -69,10 +79,81 @@ impl<T: EthSpec> Consts for SyncCommitteeContribution<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// A trait for types that implement a behaviour where one object of that type
|
||||||
|
/// can be a subset/superset of another.
|
||||||
|
/// This trait allows us to be generic over the aggregate item that we store in the cache that
|
||||||
|
/// we want to prevent duplicates/subsets for.
|
||||||
|
pub trait SubsetItem {
|
||||||
|
/// The item that is stored for later comparison with new incoming aggregate items.
|
||||||
|
type Item;
|
||||||
|
|
||||||
|
/// Returns `true` if `self` is a non-strict subset of `other` and `false` otherwise.
|
||||||
|
fn is_subset(&self, other: &Self::Item) -> bool;
|
||||||
|
|
||||||
|
/// Returns `true` if `self` is a non-strict superset of `other` and `false` otherwise.
|
||||||
|
fn is_superset(&self, other: &Self::Item) -> bool;
|
||||||
|
|
||||||
|
/// Returns the item that gets stored in `ObservedAggregates` for later subset
|
||||||
|
/// comparison with incoming aggregates.
|
||||||
|
fn get_item(&self) -> Self::Item;
|
||||||
|
|
||||||
|
/// Returns a unique value that keys the object to the item that is being stored
|
||||||
|
/// in `ObservedAggregates`.
|
||||||
|
fn root(&self) -> Hash256;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T: EthSpec> SubsetItem for Attestation<T> {
|
||||||
|
type Item = BitList<T::MaxValidatorsPerCommittee>;
|
||||||
|
fn is_subset(&self, other: &Self::Item) -> bool {
|
||||||
|
self.aggregation_bits.is_subset(other)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn is_superset(&self, other: &Self::Item) -> bool {
|
||||||
|
other.is_subset(&self.aggregation_bits)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the sync contribution aggregation bits.
|
||||||
|
fn get_item(&self) -> Self::Item {
|
||||||
|
self.aggregation_bits.clone()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the hash tree root of the attestation data.
|
||||||
|
fn root(&self) -> Hash256 {
|
||||||
|
self.data.tree_hash_root()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T: EthSpec> SubsetItem for SyncCommitteeContribution<T> {
|
||||||
|
type Item = BitVector<T::SyncSubcommitteeSize>;
|
||||||
|
fn is_subset(&self, other: &Self::Item) -> bool {
|
||||||
|
self.aggregation_bits.is_subset(other)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn is_superset(&self, other: &Self::Item) -> bool {
|
||||||
|
other.is_subset(&self.aggregation_bits)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the sync contribution aggregation bits.
|
||||||
|
fn get_item(&self) -> Self::Item {
|
||||||
|
self.aggregation_bits.clone()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the hash tree root of the root, slot and subcommittee index
|
||||||
|
/// of the sync contribution.
|
||||||
|
fn root(&self) -> Hash256 {
|
||||||
|
SyncCommitteeData {
|
||||||
|
root: self.beacon_block_root,
|
||||||
|
slot: self.slot,
|
||||||
|
subcommittee_index: self.subcommittee_index,
|
||||||
|
}
|
||||||
|
.tree_hash_root()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq)]
|
#[derive(Debug, PartialEq)]
|
||||||
pub enum ObserveOutcome {
|
pub enum ObserveOutcome {
|
||||||
/// This item was already known.
|
/// This item is a non-strict subset of an already known item.
|
||||||
AlreadyKnown,
|
Subset,
|
||||||
/// This was the first time this item was observed.
|
/// This was the first time this item was observed.
|
||||||
New,
|
New,
|
||||||
}
|
}
|
||||||
@ -94,26 +175,28 @@ pub enum Error {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A `HashSet` that contains entries related to some `Slot`.
|
/// A `HashMap` that contains entries related to some `Slot`.
|
||||||
struct SlotHashSet {
|
struct SlotHashSet<I> {
|
||||||
set: HashSet<Hash256>,
|
/// Contains a vector of maximally-sized aggregation bitfields/bitvectors
|
||||||
|
/// such that no bitfield/bitvector is a subset of any other in the list.
|
||||||
|
map: HashMap<Hash256, Vec<I>>,
|
||||||
slot: Slot,
|
slot: Slot,
|
||||||
max_capacity: usize,
|
max_capacity: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl SlotHashSet {
|
impl<I> SlotHashSet<I> {
|
||||||
pub fn new(slot: Slot, initial_capacity: usize, max_capacity: usize) -> Self {
|
pub fn new(slot: Slot, initial_capacity: usize, max_capacity: usize) -> Self {
|
||||||
Self {
|
Self {
|
||||||
slot,
|
slot,
|
||||||
set: HashSet::with_capacity(initial_capacity),
|
map: HashMap::with_capacity(initial_capacity),
|
||||||
max_capacity,
|
max_capacity,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Store the items in self so future observations recognise its existence.
|
/// Store the items in self so future observations recognise its existence.
|
||||||
pub fn observe_item<T: SlotData>(
|
pub fn observe_item<S: SlotData + SubsetItem<Item = I>>(
|
||||||
&mut self,
|
&mut self,
|
||||||
item: &T,
|
item: &S,
|
||||||
root: Hash256,
|
root: Hash256,
|
||||||
) -> Result<ObserveOutcome, Error> {
|
) -> Result<ObserveOutcome, Error> {
|
||||||
if item.get_slot() != self.slot {
|
if item.get_slot() != self.slot {
|
||||||
@ -123,29 +206,45 @@ impl SlotHashSet {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.set.contains(&root) {
|
if let Some(aggregates) = self.map.get_mut(&root) {
|
||||||
Ok(ObserveOutcome::AlreadyKnown)
|
for existing in aggregates {
|
||||||
} else {
|
// Check if `item` is a subset of any of the observed aggregates
|
||||||
|
if item.is_subset(existing) {
|
||||||
|
return Ok(ObserveOutcome::Subset);
|
||||||
|
// Check if `item` is a superset of any of the observed aggregates
|
||||||
|
// If true, we replace the new item with its existing subset. This allows us
|
||||||
|
// to hold fewer items in the list.
|
||||||
|
} else if item.is_superset(existing) {
|
||||||
|
*existing = item.get_item();
|
||||||
|
return Ok(ObserveOutcome::New);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Here we check to see if this slot has reached the maximum observation count.
|
// Here we check to see if this slot has reached the maximum observation count.
|
||||||
//
|
//
|
||||||
// The resulting behaviour is that we are no longer able to successfully observe new
|
// The resulting behaviour is that we are no longer able to successfully observe new
|
||||||
// items, however we will continue to return `is_known` values. We could also
|
// items, however we will continue to return `is_known_subset` values. We could also
|
||||||
// disable `is_known`, however then we would stop forwarding items across the
|
// disable `is_known_subset`, however then we would stop forwarding items across the
|
||||||
// gossip network and I think that this is a worse case than sending some invalid ones.
|
// gossip network and I think that this is a worse case than sending some invalid ones.
|
||||||
// The underlying libp2p network is responsible for removing duplicate messages, so
|
// The underlying libp2p network is responsible for removing duplicate messages, so
|
||||||
// this doesn't risk a broadcast loop.
|
// this doesn't risk a broadcast loop.
|
||||||
if self.set.len() >= self.max_capacity {
|
if self.map.len() >= self.max_capacity {
|
||||||
return Err(Error::ReachedMaxObservationsPerSlot(self.max_capacity));
|
return Err(Error::ReachedMaxObservationsPerSlot(self.max_capacity));
|
||||||
}
|
}
|
||||||
|
|
||||||
self.set.insert(root);
|
let item = item.get_item();
|
||||||
|
self.map.entry(root).or_default().push(item);
|
||||||
Ok(ObserveOutcome::New)
|
Ok(ObserveOutcome::New)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/// Indicates if `item` has been observed before.
|
/// Check if `item` is a non-strict subset of any of the already observed aggregates for
|
||||||
pub fn is_known<T: SlotData>(&self, item: &T, root: Hash256) -> Result<bool, Error> {
|
/// the given root and slot.
|
||||||
|
pub fn is_known_subset<S: SlotData + SubsetItem<Item = I>>(
|
||||||
|
&self,
|
||||||
|
item: &S,
|
||||||
|
root: Hash256,
|
||||||
|
) -> Result<bool, Error> {
|
||||||
if item.get_slot() != self.slot {
|
if item.get_slot() != self.slot {
|
||||||
return Err(Error::IncorrectSlot {
|
return Err(Error::IncorrectSlot {
|
||||||
expected: self.slot,
|
expected: self.slot,
|
||||||
@ -153,25 +252,28 @@ impl SlotHashSet {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(self.set.contains(&root))
|
Ok(self
|
||||||
|
.map
|
||||||
|
.get(&root)
|
||||||
|
.map_or(false, |agg| agg.iter().any(|val| item.is_subset(val))))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The number of observed items in `self`.
|
/// The number of observed items in `self`.
|
||||||
pub fn len(&self) -> usize {
|
pub fn len(&self) -> usize {
|
||||||
self.set.len()
|
self.map.len()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Stores the roots of objects for some number of `Slots`, so we can determine if
|
/// Stores the roots of objects for some number of `Slots`, so we can determine if
|
||||||
/// these have previously been seen on the network.
|
/// these have previously been seen on the network.
|
||||||
pub struct ObservedAggregates<T: TreeHash + SlotData + Consts, E: EthSpec> {
|
pub struct ObservedAggregates<T: SlotData + Consts, E: EthSpec, I> {
|
||||||
lowest_permissible_slot: Slot,
|
lowest_permissible_slot: Slot,
|
||||||
sets: Vec<SlotHashSet>,
|
sets: Vec<SlotHashSet<I>>,
|
||||||
_phantom_spec: PhantomData<E>,
|
_phantom_spec: PhantomData<E>,
|
||||||
_phantom_tree_hash: PhantomData<T>,
|
_phantom_tree_hash: PhantomData<T>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: TreeHash + SlotData + Consts, E: EthSpec> Default for ObservedAggregates<T, E> {
|
impl<T: SlotData + Consts, E: EthSpec, I> Default for ObservedAggregates<T, E, I> {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
lowest_permissible_slot: Slot::new(0),
|
lowest_permissible_slot: Slot::new(0),
|
||||||
@ -182,17 +284,17 @@ impl<T: TreeHash + SlotData + Consts, E: EthSpec> Default for ObservedAggregates
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: TreeHash + SlotData + Consts, E: EthSpec> ObservedAggregates<T, E> {
|
impl<T: SlotData + Consts + SubsetItem<Item = I>, E: EthSpec, I> ObservedAggregates<T, E, I> {
|
||||||
/// Store the root of `item` in `self`.
|
/// Store `item` in `self` keyed at `root`.
|
||||||
///
|
///
|
||||||
/// `root` must equal `item.tree_hash_root()`.
|
/// `root` must equal `item.root::<SubsetItem>()`.
|
||||||
pub fn observe_item(
|
pub fn observe_item(
|
||||||
&mut self,
|
&mut self,
|
||||||
item: &T,
|
item: &T,
|
||||||
root_opt: Option<Hash256>,
|
root_opt: Option<Hash256>,
|
||||||
) -> Result<ObserveOutcome, Error> {
|
) -> Result<ObserveOutcome, Error> {
|
||||||
let index = self.get_set_index(item.get_slot())?;
|
let index = self.get_set_index(item.get_slot())?;
|
||||||
let root = root_opt.unwrap_or_else(|| item.tree_hash_root());
|
let root = root_opt.unwrap_or_else(|| item.root());
|
||||||
|
|
||||||
self.sets
|
self.sets
|
||||||
.get_mut(index)
|
.get_mut(index)
|
||||||
@ -200,17 +302,18 @@ impl<T: TreeHash + SlotData + Consts, E: EthSpec> ObservedAggregates<T, E> {
|
|||||||
.and_then(|set| set.observe_item(item, root))
|
.and_then(|set| set.observe_item(item, root))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Check to see if the `root` of `item` is in self.
|
/// Check if `item` is a non-strict subset of any of the already observed aggregates for
|
||||||
|
/// the given root and slot.
|
||||||
///
|
///
|
||||||
/// `root` must equal `a.tree_hash_root()`.
|
/// `root` must equal `item.root::<SubsetItem>()`.
|
||||||
#[allow(clippy::wrong_self_convention)]
|
#[allow(clippy::wrong_self_convention)]
|
||||||
pub fn is_known(&mut self, item: &T, root: Hash256) -> Result<bool, Error> {
|
pub fn is_known_subset(&mut self, item: &T, root: Hash256) -> Result<bool, Error> {
|
||||||
let index = self.get_set_index(item.get_slot())?;
|
let index = self.get_set_index(item.get_slot())?;
|
||||||
|
|
||||||
self.sets
|
self.sets
|
||||||
.get(index)
|
.get(index)
|
||||||
.ok_or(Error::InvalidSetIndex(index))
|
.ok_or(Error::InvalidSetIndex(index))
|
||||||
.and_then(|set| set.is_known(item, root))
|
.and_then(|set| set.is_known_subset(item, root))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The maximum number of slots that items are stored for.
|
/// The maximum number of slots that items are stored for.
|
||||||
@ -296,7 +399,6 @@ impl<T: TreeHash + SlotData + Consts, E: EthSpec> ObservedAggregates<T, E> {
|
|||||||
#[cfg(not(debug_assertions))]
|
#[cfg(not(debug_assertions))]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use tree_hash::TreeHash;
|
|
||||||
use types::{test_utils::test_random_instance, Hash256};
|
use types::{test_utils::test_random_instance, Hash256};
|
||||||
|
|
||||||
type E = types::MainnetEthSpec;
|
type E = types::MainnetEthSpec;
|
||||||
@ -330,7 +432,7 @@ mod tests {
|
|||||||
|
|
||||||
for a in &items {
|
for a in &items {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
store.is_known(a, a.tree_hash_root()),
|
store.is_known_subset(a, a.root()),
|
||||||
Ok(false),
|
Ok(false),
|
||||||
"should indicate an unknown attestation is unknown"
|
"should indicate an unknown attestation is unknown"
|
||||||
);
|
);
|
||||||
@ -343,13 +445,13 @@ mod tests {
|
|||||||
|
|
||||||
for a in &items {
|
for a in &items {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
store.is_known(a, a.tree_hash_root()),
|
store.is_known_subset(a, a.root()),
|
||||||
Ok(true),
|
Ok(true),
|
||||||
"should indicate a known attestation is known"
|
"should indicate a known attestation is known"
|
||||||
);
|
);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
store.observe_item(a, Some(a.tree_hash_root())),
|
store.observe_item(a, Some(a.root())),
|
||||||
Ok(ObserveOutcome::AlreadyKnown),
|
Ok(ObserveOutcome::Subset),
|
||||||
"should acknowledge an existing attestation"
|
"should acknowledge an existing attestation"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -37,6 +37,7 @@ use bls::{verify_signature_sets, PublicKeyBytes};
|
|||||||
use derivative::Derivative;
|
use derivative::Derivative;
|
||||||
use safe_arith::ArithError;
|
use safe_arith::ArithError;
|
||||||
use slot_clock::SlotClock;
|
use slot_clock::SlotClock;
|
||||||
|
use ssz_derive::{Decode, Encode};
|
||||||
use state_processing::per_block_processing::errors::SyncCommitteeMessageValidationError;
|
use state_processing::per_block_processing::errors::SyncCommitteeMessageValidationError;
|
||||||
use state_processing::signature_sets::{
|
use state_processing::signature_sets::{
|
||||||
signed_sync_aggregate_selection_proof_signature_set, signed_sync_aggregate_signature_set,
|
signed_sync_aggregate_selection_proof_signature_set, signed_sync_aggregate_signature_set,
|
||||||
@ -47,6 +48,7 @@ use std::borrow::Cow;
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use strum::AsRefStr;
|
use strum::AsRefStr;
|
||||||
use tree_hash::TreeHash;
|
use tree_hash::TreeHash;
|
||||||
|
use tree_hash_derive::TreeHash;
|
||||||
use types::consts::altair::SYNC_COMMITTEE_SUBNET_COUNT;
|
use types::consts::altair::SYNC_COMMITTEE_SUBNET_COUNT;
|
||||||
use types::slot_data::SlotData;
|
use types::slot_data::SlotData;
|
||||||
use types::sync_committee::Error as SyncCommitteeError;
|
use types::sync_committee::Error as SyncCommitteeError;
|
||||||
@ -110,14 +112,14 @@ pub enum Error {
|
|||||||
///
|
///
|
||||||
/// The peer has sent an invalid message.
|
/// The peer has sent an invalid message.
|
||||||
AggregatorPubkeyUnknown(u64),
|
AggregatorPubkeyUnknown(u64),
|
||||||
/// The sync contribution has been seen before; either in a block, on the gossip network or from a
|
/// The sync contribution or a superset of this sync contribution's aggregation bits for the same data
|
||||||
/// local validator.
|
/// has been seen before; either in a block on the gossip network or from a local validator.
|
||||||
///
|
///
|
||||||
/// ## Peer scoring
|
/// ## Peer scoring
|
||||||
///
|
///
|
||||||
/// It's unclear if this sync contribution is valid, however we have already observed it and do not
|
/// It's unclear if this sync contribution is valid, however we have already observed it and do not
|
||||||
/// need to observe it again.
|
/// need to observe it again.
|
||||||
SyncContributionAlreadyKnown(Hash256),
|
SyncContributionSupersetKnown(Hash256),
|
||||||
/// There has already been an aggregation observed for this validator, we refuse to process a
|
/// There has already been an aggregation observed for this validator, we refuse to process a
|
||||||
/// second.
|
/// second.
|
||||||
///
|
///
|
||||||
@ -268,6 +270,14 @@ pub struct VerifiedSyncContribution<T: BeaconChainTypes> {
|
|||||||
participant_pubkeys: Vec<PublicKeyBytes>,
|
participant_pubkeys: Vec<PublicKeyBytes>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// The sync contribution data.
|
||||||
|
#[derive(Encode, Decode, TreeHash)]
|
||||||
|
pub struct SyncCommitteeData {
|
||||||
|
pub slot: Slot,
|
||||||
|
pub root: Hash256,
|
||||||
|
pub subcommittee_index: u64,
|
||||||
|
}
|
||||||
|
|
||||||
/// Wraps a `SyncCommitteeMessage` that has been verified for propagation on the gossip network.
|
/// Wraps a `SyncCommitteeMessage` that has been verified for propagation on the gossip network.
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct VerifiedSyncCommitteeMessage {
|
pub struct VerifiedSyncCommitteeMessage {
|
||||||
@ -314,15 +324,22 @@ impl<T: BeaconChainTypes> VerifiedSyncContribution<T> {
|
|||||||
return Err(Error::AggregatorNotInCommittee { aggregator_index });
|
return Err(Error::AggregatorNotInCommittee { aggregator_index });
|
||||||
};
|
};
|
||||||
|
|
||||||
// Ensure the valid sync contribution has not already been seen locally.
|
// Ensure the valid sync contribution or its superset has not already been seen locally.
|
||||||
let contribution_root = contribution.tree_hash_root();
|
let contribution_data_root = SyncCommitteeData {
|
||||||
|
slot: contribution.slot,
|
||||||
|
root: contribution.beacon_block_root,
|
||||||
|
subcommittee_index: contribution.subcommittee_index,
|
||||||
|
}
|
||||||
|
.tree_hash_root();
|
||||||
|
|
||||||
if chain
|
if chain
|
||||||
.observed_sync_contributions
|
.observed_sync_contributions
|
||||||
.write()
|
.write()
|
||||||
.is_known(contribution, contribution_root)
|
.is_known_subset(contribution, contribution_data_root)
|
||||||
.map_err(|e| Error::BeaconChainError(e.into()))?
|
.map_err(|e| Error::BeaconChainError(e.into()))?
|
||||||
{
|
{
|
||||||
return Err(Error::SyncContributionAlreadyKnown(contribution_root));
|
metrics::inc_counter(&metrics::SYNC_CONTRIBUTION_SUBSETS);
|
||||||
|
return Err(Error::SyncContributionSupersetKnown(contribution_data_root));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure there has been no other observed aggregate for the given `aggregator_index`.
|
// Ensure there has been no other observed aggregate for the given `aggregator_index`.
|
||||||
@ -376,13 +393,14 @@ impl<T: BeaconChainTypes> VerifiedSyncContribution<T> {
|
|||||||
//
|
//
|
||||||
// It's important to double check that the contribution is not already known, otherwise two
|
// It's important to double check that the contribution is not already known, otherwise two
|
||||||
// contribution processed at the same time could be published.
|
// contribution processed at the same time could be published.
|
||||||
if let ObserveOutcome::AlreadyKnown = chain
|
if let ObserveOutcome::Subset = chain
|
||||||
.observed_sync_contributions
|
.observed_sync_contributions
|
||||||
.write()
|
.write()
|
||||||
.observe_item(contribution, Some(contribution_root))
|
.observe_item(contribution, Some(contribution_data_root))
|
||||||
.map_err(|e| Error::BeaconChainError(e.into()))?
|
.map_err(|e| Error::BeaconChainError(e.into()))?
|
||||||
{
|
{
|
||||||
return Err(Error::SyncContributionAlreadyKnown(contribution_root));
|
metrics::inc_counter(&metrics::SYNC_CONTRIBUTION_SUBSETS);
|
||||||
|
return Err(Error::SyncContributionSupersetKnown(contribution_data_root));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Observe the aggregator so we don't process another aggregate from them.
|
// Observe the aggregator so we don't process another aggregate from them.
|
||||||
|
@ -699,8 +699,8 @@ async fn aggregated_gossip_verification() {
|
|||||||
|tester, err| {
|
|tester, err| {
|
||||||
assert!(matches!(
|
assert!(matches!(
|
||||||
err,
|
err,
|
||||||
AttnError::AttestationAlreadyKnown(hash)
|
AttnError::AttestationSupersetKnown(hash)
|
||||||
if hash == tester.valid_aggregate.message.aggregate.tree_hash_root()
|
if hash == tester.valid_aggregate.message.aggregate.data.tree_hash_root()
|
||||||
))
|
))
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#![cfg(not(debug_assertions))]
|
#![cfg(not(debug_assertions))]
|
||||||
|
|
||||||
use beacon_chain::sync_committee_verification::Error as SyncCommitteeError;
|
use beacon_chain::sync_committee_verification::{Error as SyncCommitteeError, SyncCommitteeData};
|
||||||
use beacon_chain::test_utils::{BeaconChainHarness, EphemeralHarnessType, RelativeSyncCommittee};
|
use beacon_chain::test_utils::{BeaconChainHarness, EphemeralHarnessType, RelativeSyncCommittee};
|
||||||
use int_to_bytes::int_to_bytes32;
|
use int_to_bytes::int_to_bytes32;
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
@ -444,11 +444,17 @@ async fn aggregated_gossip_verification() {
|
|||||||
* subcommittee index contribution.subcommittee_index.
|
* subcommittee index contribution.subcommittee_index.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
let contribution = &valid_aggregate.message.contribution;
|
||||||
|
let sync_committee_data = SyncCommitteeData {
|
||||||
|
slot: contribution.slot,
|
||||||
|
root: contribution.beacon_block_root,
|
||||||
|
subcommittee_index: contribution.subcommittee_index,
|
||||||
|
};
|
||||||
assert_invalid!(
|
assert_invalid!(
|
||||||
"aggregate that has already been seen",
|
"aggregate that has already been seen",
|
||||||
valid_aggregate.clone(),
|
valid_aggregate.clone(),
|
||||||
SyncCommitteeError::SyncContributionAlreadyKnown(hash)
|
SyncCommitteeError::SyncContributionSupersetKnown(hash)
|
||||||
if hash == valid_aggregate.message.contribution.tree_hash_root()
|
if hash == sync_committee_data.tree_hash_root()
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -23,7 +23,7 @@ bytes = "1.1.0"
|
|||||||
task_executor = { path = "../../common/task_executor" }
|
task_executor = { path = "../../common/task_executor" }
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
ethereum_ssz = "0.5.0"
|
ethereum_ssz = "0.5.0"
|
||||||
ssz_types = "0.5.0"
|
ssz_types = "0.5.3"
|
||||||
eth2 = { path = "../../common/eth2" }
|
eth2 = { path = "../../common/eth2" }
|
||||||
state_processing = { path = "../../consensus/state_processing" }
|
state_processing = { path = "../../consensus/state_processing" }
|
||||||
superstruct = "0.6.0"
|
superstruct = "0.6.0"
|
||||||
|
@ -2843,7 +2843,7 @@ pub fn serve<T: BeaconChainTypes>(
|
|||||||
// It's reasonably likely that two different validators produce
|
// It's reasonably likely that two different validators produce
|
||||||
// identical aggregates, especially if they're using the same beacon
|
// identical aggregates, especially if they're using the same beacon
|
||||||
// node.
|
// node.
|
||||||
Err(AttnError::AttestationAlreadyKnown(_)) => continue,
|
Err(AttnError::AttestationSupersetKnown(_)) => continue,
|
||||||
// If we've already seen this aggregator produce an aggregate, just
|
// If we've already seen this aggregator produce an aggregate, just
|
||||||
// skip this one.
|
// skip this one.
|
||||||
//
|
//
|
||||||
|
@ -304,7 +304,7 @@ pub fn process_signed_contribution_and_proofs<T: BeaconChainTypes>(
|
|||||||
}
|
}
|
||||||
// If we already know the contribution, don't broadcast it or attempt to
|
// If we already know the contribution, don't broadcast it or attempt to
|
||||||
// further verify it. Return success.
|
// further verify it. Return success.
|
||||||
Err(SyncVerificationError::SyncContributionAlreadyKnown(_)) => continue,
|
Err(SyncVerificationError::SyncContributionSupersetKnown(_)) => continue,
|
||||||
// If we've already seen this aggregator produce an aggregate, just
|
// If we've already seen this aggregator produce an aggregate, just
|
||||||
// skip this one.
|
// skip this one.
|
||||||
//
|
//
|
||||||
|
@ -8,7 +8,7 @@ edition = "2021"
|
|||||||
discv5 = { version = "0.3.0", features = ["libp2p"]}
|
discv5 = { version = "0.3.0", features = ["libp2p"]}
|
||||||
unsigned-varint = { version = "0.6.0", features = ["codec"] }
|
unsigned-varint = { version = "0.6.0", features = ["codec"] }
|
||||||
types = { path = "../../consensus/types" }
|
types = { path = "../../consensus/types" }
|
||||||
ssz_types = "0.5.0"
|
ssz_types = "0.5.3"
|
||||||
serde = { version = "1.0.116", features = ["derive"] }
|
serde = { version = "1.0.116", features = ["derive"] }
|
||||||
serde_derive = "1.0.116"
|
serde_derive = "1.0.116"
|
||||||
ethereum_ssz = "0.5.0"
|
ethereum_ssz = "0.5.0"
|
||||||
|
@ -22,7 +22,7 @@ slot_clock = { path = "../../common/slot_clock" }
|
|||||||
slog = { version = "2.5.2", features = ["max_level_trace"] }
|
slog = { version = "2.5.2", features = ["max_level_trace"] }
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
ethereum_ssz = "0.5.0"
|
ethereum_ssz = "0.5.0"
|
||||||
ssz_types = "0.5.0"
|
ssz_types = "0.5.3"
|
||||||
futures = "0.3.7"
|
futures = "0.3.7"
|
||||||
error-chain = "0.12.4"
|
error-chain = "0.12.4"
|
||||||
tokio = { version = "1.14.0", features = ["full"] }
|
tokio = { version = "1.14.0", features = ["full"] }
|
||||||
|
@ -1735,7 +1735,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
|||||||
"attn_agg_not_in_committee",
|
"attn_agg_not_in_committee",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
AttnError::AttestationAlreadyKnown { .. } => {
|
AttnError::AttestationSupersetKnown { .. } => {
|
||||||
/*
|
/*
|
||||||
* The aggregate attestation has already been observed on the network or in
|
* The aggregate attestation has already been observed on the network or in
|
||||||
* a block.
|
* a block.
|
||||||
@ -2244,7 +2244,7 @@ impl<T: BeaconChainTypes> Worker<T> {
|
|||||||
"sync_bad_aggregator",
|
"sync_bad_aggregator",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
SyncCommitteeError::SyncContributionAlreadyKnown(_)
|
SyncCommitteeError::SyncContributionSupersetKnown(_)
|
||||||
| SyncCommitteeError::AggregatorAlreadyKnown(_) => {
|
| SyncCommitteeError::AggregatorAlreadyKnown(_) => {
|
||||||
/*
|
/*
|
||||||
* The sync committee message already been observed on the network or in
|
* The sync committee message already been observed on the network or in
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethereum-types = "0.14.1"
|
ethereum-types = "0.14.1"
|
||||||
ssz_types = "0.5.0"
|
ssz_types = "0.5.3"
|
||||||
ethereum_hashing = "1.0.0-beta.2"
|
ethereum_hashing = "1.0.0-beta.2"
|
||||||
ethereum_ssz_derive = "0.5.0"
|
ethereum_ssz_derive = "0.5.0"
|
||||||
ethereum_ssz = "0.5.0"
|
ethereum_ssz = "0.5.0"
|
||||||
|
@ -15,7 +15,7 @@ integer-sqrt = "0.1.5"
|
|||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
ethereum_ssz = "0.5.0"
|
ethereum_ssz = "0.5.0"
|
||||||
ethereum_ssz_derive = "0.5.0"
|
ethereum_ssz_derive = "0.5.0"
|
||||||
ssz_types = "0.5.0"
|
ssz_types = "0.5.3"
|
||||||
merkle_proof = { path = "../merkle_proof" }
|
merkle_proof = { path = "../merkle_proof" }
|
||||||
safe_arith = { path = "../safe_arith" }
|
safe_arith = { path = "../safe_arith" }
|
||||||
tree_hash = "0.5.0"
|
tree_hash = "0.5.0"
|
||||||
|
@ -27,7 +27,7 @@ serde_derive = "1.0.116"
|
|||||||
slog = "2.5.2"
|
slog = "2.5.2"
|
||||||
ethereum_ssz = { version = "0.5.0", features = ["arbitrary"] }
|
ethereum_ssz = { version = "0.5.0", features = ["arbitrary"] }
|
||||||
ethereum_ssz_derive = "0.5.0"
|
ethereum_ssz_derive = "0.5.0"
|
||||||
ssz_types = { version = "0.5.0", features = ["arbitrary"] }
|
ssz_types = { version = "0.5.3", features = ["arbitrary"] }
|
||||||
swap_or_not_shuffle = { path = "../swap_or_not_shuffle", features = ["arbitrary"] }
|
swap_or_not_shuffle = { path = "../swap_or_not_shuffle", features = ["arbitrary"] }
|
||||||
test_random_derive = { path = "../../common/test_random_derive" }
|
test_random_derive = { path = "../../common/test_random_derive" }
|
||||||
tree_hash = { version = "0.5.0", features = ["arbitrary"] }
|
tree_hash = { version = "0.5.0", features = ["arbitrary"] }
|
||||||
|
Loading…
Reference in New Issue
Block a user