Eitan Seri-Levi
Eitan Seri-Levi
## Issue Addressed #5087 ## Proposed Changes Upgrade clap to v4.5 and move to derive for some better compile time guarantees ## Additional Info
## Issue Addressed #5226 ## Proposed Changes Deprecate `-l` flag functionality. Since we are now capturing these logs in separate files, there doesn't seem to be a reason to also...
## Issue Addressed #4669 ## Proposed Changes Modularize the beacon node backend to make it easier to add new database implementations ## Additional Info The existing `KeyValueStore` trait already does...
## Issue Addressed #5131 ## Proposed Changes For some beacon api endpoints we are returning 500's while syncing when we should be returning 503's. Our `not_while_syncing_filter` should be taking care...
## Issue Addressed #4896 ## Proposed Changes conform to capella/deneb light client specs - [Capella light client spec](https://github.com/ethereum/consensus-specs/tree/dev/specs/capella/light-client) - [Deneb light client spec](https://github.com/ethereum/consensus-specs/tree/dev/specs/deneb/light-client) ## Additional Info https://github.com/sigp/lighthouse/pull/3954 is a blocker
Currently clients can potentially pass all `get_proposer_head` spec tests without having a fully spec compliant implementation. This PR attempts to improve `get_proposer_head` test coverage. A new `test_parent_weak` test is added...
## Issue Addressed #5605 ## Proposed Changes Implement the electra variant of `get_attesting_indices`. Refactored `map_attestation_committee` to run the `map_fn` over a list of committees for electra compatibility. I've also removed...
## Issue Addressed https://github.com/sigp/lighthouse/issues/5605 ## Proposed Changes Electra Attestations that share equal `AttestationData` will now be aggregated before being submitted on chain. See [spec](https://github.com/ethereum/consensus-specs/blob/dev/specs/electra/validator.md#attestations) for implementation details ## Additional Info...
## Issue Addressed #4597 and #5423 ## Proposed Changes - Removed VC response signing and related code paths - prevent warp backtracking issues by changing our usage of `and_then` to...
## Issue Addressed #5087 ## Proposed Changes This PR upgrades clap from version 2.x to 4.5.1. There are some breaking changes between the two versions, v4.x is a bit stricter...