59ec6b71b8
## Issue Addressed Closes https://github.com/sigp/lighthouse/issues/2371 ## Proposed Changes Backport some changes from `tree-states` that remove duplicated calculations of the `proposer_index`. With this change the proposer index should be calculated only once for each block, and then plumbed through to every place it is required. ## Additional Info In future I hope to add more data to the consensus context that is cached on a per-epoch basis, like the effective balances of validators and the base rewards. There are some other changes to remove indexing in tests that were also useful for `tree-states` (the `tree-states` types don't implement `Index`).
45 lines
1.3 KiB
Rust
45 lines
1.3 KiB
Rust
// Clippy lint set-up (disabled in tests)
|
|
#![cfg_attr(
|
|
not(test),
|
|
deny(
|
|
clippy::integer_arithmetic,
|
|
clippy::disallowed_methods,
|
|
clippy::indexing_slicing,
|
|
clippy::unwrap_used,
|
|
clippy::expect_used,
|
|
clippy::panic,
|
|
clippy::let_underscore_must_use
|
|
)
|
|
)]
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
mod metrics;
|
|
|
|
pub mod block_replayer;
|
|
pub mod common;
|
|
pub mod consensus_context;
|
|
pub mod genesis;
|
|
pub mod per_block_processing;
|
|
pub mod per_epoch_processing;
|
|
pub mod per_slot_processing;
|
|
pub mod state_advance;
|
|
pub mod upgrade;
|
|
pub mod verify_operation;
|
|
|
|
pub use block_replayer::{BlockReplayError, BlockReplayer, StateRootStrategy};
|
|
pub use consensus_context::{ConsensusContext, ContextError};
|
|
pub use genesis::{
|
|
eth2_genesis_time, initialize_beacon_state_from_eth1, is_valid_genesis_state,
|
|
process_activations,
|
|
};
|
|
pub use per_block_processing::{
|
|
block_signature_verifier, errors::BlockProcessingError, per_block_processing, signature_sets,
|
|
BlockSignatureStrategy, BlockSignatureVerifier, VerifyBlockRoot, VerifySignatures,
|
|
};
|
|
pub use per_epoch_processing::{
|
|
errors::EpochProcessingError, process_epoch as per_epoch_processing,
|
|
};
|
|
pub use per_slot_processing::{per_slot_processing, Error as SlotProcessingError};
|
|
pub use verify_operation::{SigVerifiedOp, VerifyOperation};
|