20ebf1f3c1
## Issue Addressed Add a flag that optionally enables unrealized vote tracking. Would like to test out on testnets and benchmark differences in methods of vote tracking. This PR includes a DB schema upgrade to enable to new vote tracking style. Co-authored-by: realbigsean <sean@sigmaprime.io> Co-authored-by: Paul Hauner <paul@paulhauner.com> Co-authored-by: sean <seananderson33@gmail.com> Co-authored-by: Mac L <mjladson@pm.me>
11 lines
417 B
Rust
11 lines
417 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,
|
|
};
|
|
pub use fork_choice_store::ForkChoiceStore;
|
|
pub use proto_array::{Block as ProtoBlock, ExecutionStatus, InvalidationOperation};
|