mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +00:00
## Issue Addressed Add a flag that can increase count unrealized strictness, defaults to false ## 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. Co-authored-by: realbigsean <seananderson33@gmail.com> Co-authored-by: sean <seananderson33@gmail.com>
16 lines
493 B
Rust
16 lines
493 B
Rust
mod error;
|
|
pub mod fork_choice_test_definition;
|
|
mod proto_array;
|
|
mod proto_array_fork_choice;
|
|
mod ssz_container;
|
|
|
|
pub use crate::proto_array::{CountUnrealizedFull, InvalidationOperation};
|
|
pub use crate::proto_array_fork_choice::{Block, ExecutionStatus, ProtoArrayForkChoice};
|
|
pub use error::Error;
|
|
|
|
pub mod core {
|
|
pub use super::proto_array::{ProposerBoost, ProtoArray, ProtoNode};
|
|
pub use super::proto_array_fork_choice::VoteTracker;
|
|
pub use super::ssz_container::SszContainer;
|
|
}
|