mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-20 21:34:46 +00:00
Closes: - https://github.com/sigp/lighthouse/issues/7760 - [x] Remove `balances_cache` from `PersistedForkChoiceStore` (~65 MB saving on mainnet) - [x] Remove `justified_balances` from `PersistedForkChoiceStore` (~16 MB saving on mainnet) - [x] Remove `balances` from `ProtoArray`/`SszContainer`. - [x] Implement zstd compression for votes - [x] Fix bug in justified state usage - [x] Bump schema version to V28 and implement migration.
14 lines
509 B
Rust
14 lines
509 B
Rust
mod fork_choice;
|
|
mod fork_choice_store;
|
|
mod metrics;
|
|
|
|
pub use crate::fork_choice::{
|
|
AttestationFromBlock, Error, ForkChoice, ForkChoiceView, ForkchoiceUpdateParameters,
|
|
InvalidAttestation, InvalidBlock, PayloadVerificationStatus, PersistedForkChoice,
|
|
PersistedForkChoiceV17, PersistedForkChoiceV28, QueuedAttestation, ResetPayloadStatuses,
|
|
};
|
|
pub use fork_choice_store::ForkChoiceStore;
|
|
pub use proto_array::{
|
|
Block as ProtoBlock, ExecutionStatus, InvalidationOperation, ProposerHeadError,
|
|
};
|