cae40731a2
## 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>
13 lines
467 B
Rust
13 lines
467 B
Rust
mod fork_choice;
|
|
mod fork_choice_store;
|
|
|
|
pub use crate::fork_choice::{
|
|
AttestationFromBlock, CountUnrealized, Error, ForkChoice, ForkChoiceView,
|
|
ForkchoiceUpdateParameters, InvalidAttestation, InvalidBlock, PayloadVerificationStatus,
|
|
PersistedForkChoice, QueuedAttestation, ResetPayloadStatuses,
|
|
};
|
|
pub use fork_choice_store::ForkChoiceStore;
|
|
pub use proto_array::{
|
|
Block as ProtoBlock, CountUnrealizedFull, ExecutionStatus, InvalidationOperation,
|
|
};
|