mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-22 07:18:25 +00:00
Update our consensus code to v1.7.0-alpha.4 Co-Authored-By: Michael Sproul <michael@sigmaprime.io>
28 lines
920 B
Rust
28 lines
920 B
Rust
pub use case_result::CaseResult;
|
|
pub use cases::{
|
|
BuilderPendingPayments, Case, EffectiveBalanceUpdates, Eth1DataReset, ExecutionPayloadBidBlock,
|
|
FeatureName, HistoricalRootsUpdate, HistoricalSummariesUpdate, InactivityUpdates,
|
|
JustificationAndFinalization, ParticipationFlagUpdates, ParticipationRecordUpdates,
|
|
PendingBalanceDeposits, PendingConsolidations, ProposerLookahead, PtcWindow, RandaoMixesReset,
|
|
RegistryUpdates, RewardsAndPenalties, Slashings, SlashingsReset, SyncCommitteeUpdates,
|
|
WithdrawalsPayload,
|
|
};
|
|
pub use decode::log_file_access;
|
|
pub use error::Error;
|
|
pub use handler::*;
|
|
pub use type_name::TypeName;
|
|
use types::{ChainSpec, EthSpec, ForkName};
|
|
|
|
mod bls_setting;
|
|
mod case_result;
|
|
mod cases;
|
|
mod decode;
|
|
mod error;
|
|
mod handler;
|
|
mod results;
|
|
mod type_name;
|
|
|
|
pub fn testing_spec<E: EthSpec>(fork_name: ForkName) -> ChainSpec {
|
|
fork_name.make_genesis_spec(E::default_spec())
|
|
}
|