d04fde3ba9
## Issue Addressed Closes https://github.com/sigp/lighthouse/issues/3241 Closes https://github.com/sigp/lighthouse/issues/3242 ## Proposed Changes * [x] Implement logic to remove equivocating validators from fork choice per https://github.com/ethereum/consensus-specs/pull/2845 * [x] Update tests to v1.2.0-rc.1. The new test which exercises `equivocating_indices` is passing. * [x] Pull in some SSZ abstractions from the `tree-states` branch that make implementing Vec-compatible encoding for types like `BTreeSet` and `BTreeMap`. * [x] Implement schema upgrades and downgrades for the database (new schema version is V11). * [x] Apply attester slashings from blocks to fork choice ## Additional Info * This PR doesn't need the `BTreeMap` impl, but `tree-states` does, and I don't think there's any harm in keeping it. But I could also be convinced to drop it. Blocked on #3322.
72 lines
2.1 KiB
Rust
72 lines
2.1 KiB
Rust
//! Provides encoding (serialization) and decoding (deserialization) in the SimpleSerialize (SSZ)
|
|
//! format designed for use in Ethereum 2.0.
|
|
//!
|
|
//! Adheres to the Ethereum 2.0 [SSZ
|
|
//! specification](https://github.com/ethereum/eth2.0-specs/blob/v0.12.1/ssz/simple-serialize.md)
|
|
//! at v0.12.1.
|
|
//!
|
|
//! ## Example
|
|
//!
|
|
//! ```rust
|
|
//! use ssz_derive::{Encode, Decode};
|
|
//! use ssz::{Decode, Encode};
|
|
//!
|
|
//! #[derive(PartialEq, Debug, Encode, Decode)]
|
|
//! struct Foo {
|
|
//! a: u64,
|
|
//! b: Vec<u16>,
|
|
//! }
|
|
//!
|
|
//! fn ssz_encode_decode_example() {
|
|
//! let foo = Foo {
|
|
//! a: 42,
|
|
//! b: vec![1, 3, 3, 7]
|
|
//! };
|
|
//!
|
|
//! let ssz_bytes: Vec<u8> = foo.as_ssz_bytes();
|
|
//!
|
|
//! let decoded_foo = Foo::from_ssz_bytes(&ssz_bytes).unwrap();
|
|
//!
|
|
//! assert_eq!(foo, decoded_foo);
|
|
//! }
|
|
//!
|
|
//! ```
|
|
//!
|
|
//! See `examples/` for manual implementations of the `Encode` and `Decode` traits.
|
|
|
|
mod decode;
|
|
mod encode;
|
|
pub mod legacy;
|
|
mod union_selector;
|
|
|
|
pub use decode::{
|
|
impls::decode_list_of_variable_length_items, read_offset, split_union_bytes,
|
|
try_from_iter::TryFromIter, Decode, DecodeError, SszDecoder, SszDecoderBuilder,
|
|
};
|
|
pub use encode::{encode_length, Encode, SszEncoder};
|
|
pub use union_selector::UnionSelector;
|
|
|
|
/// The number of bytes used to represent an offset.
|
|
pub const BYTES_PER_LENGTH_OFFSET: usize = 4;
|
|
/// The maximum value that can be represented using `BYTES_PER_LENGTH_OFFSET`.
|
|
#[cfg(target_pointer_width = "32")]
|
|
pub const MAX_LENGTH_VALUE: usize = (std::u32::MAX >> (8 * (4 - BYTES_PER_LENGTH_OFFSET))) as usize;
|
|
#[cfg(target_pointer_width = "64")]
|
|
pub const MAX_LENGTH_VALUE: usize = (std::u64::MAX >> (8 * (8 - BYTES_PER_LENGTH_OFFSET))) as usize;
|
|
|
|
/// The number of bytes used to indicate the variant of a union.
|
|
pub const BYTES_PER_UNION_SELECTOR: usize = 1;
|
|
/// The highest possible union selector value (higher values are reserved for backwards compatible
|
|
/// extensions).
|
|
pub const MAX_UNION_SELECTOR: u8 = 127;
|
|
|
|
/// Convenience function to SSZ encode an object supporting ssz::Encode.
|
|
///
|
|
/// Equivalent to `val.as_ssz_bytes()`.
|
|
pub fn ssz_encode<T>(val: &T) -> Vec<u8>
|
|
where
|
|
T: Encode,
|
|
{
|
|
val.as_ssz_bytes()
|
|
}
|