mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-16 11:22:56 +00:00
- [x] Implement `process_builder_pending_payments` in epoch processing for Gloas. Enable the new EF tests for this sub-component as well. - [x] Update `include_all_signatures_except_proposal` for Gloas to safely include the execution payload bid signature (this was an omission in the previous bid PR). - [x] Enable Gloas for _all_ remaining EF tests by default. They all pass with the exception of the finality tests (see below). Co-Authored-By: Michael Sproul <michael@sigmaprime.io> Co-Authored-By: Eitan Seri- Levi <eserilev@gmail.com>
28 lines
909 B
Rust
28 lines
909 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, 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())
|
|
}
|