lighthouse/consensus/state_processing/src
Michael Sproul 923486f34c Use bulk verification for sync_aggregate signature (#2415)
## Proposed Changes

Add the `sync_aggregate` from `BeaconBlock` to the bulk signature verifier for blocks. This necessitates a new signature set constructor for the sync aggregate, which is different from the others due to the use of [`eth2_fast_aggregate_verify`](https://github.com/ethereum/eth2.0-specs/blob/v1.1.0-alpha.7/specs/altair/bls.md#eth2_fast_aggregate_verify) for sync aggregates, per [`process_sync_aggregate`](https://github.com/ethereum/eth2.0-specs/blob/v1.1.0-alpha.7/specs/altair/beacon-chain.md#sync-aggregate-processing). I made the choice to return an optional signature set, with `None` representing the case where the signature is valid on account of being the point at infinity (requires no further checking).

To "dogfood" the changes and prevent duplication, the consensus logic now uses the signature set approach as well whenever it is required to verify signatures (which should only be in testing AFAIK). The EF tests pass with the code as it exists currently, but failed before I adapted the `eth2_fast_aggregate_verify` changes (which is good).

As a result of this change Altair block processing should be a little faster, and importantly, we will no longer accidentally verify signatures when replaying blocks, e.g. when replaying blocks from the database.
2021-07-28 05:40:21 +00:00
..
common Altair consensus changes and refactors (#2279) 2021-07-09 06:15:32 +00:00
per_block_processing Use bulk verification for sync_aggregate signature (#2415) 2021-07-28 05:40:21 +00:00
per_epoch_processing Cache participating indices for Altair epoch processing (#2416) 2021-07-27 07:01:01 +00:00
upgrade [Altair] Sync committee pools (#2321) 2021-07-15 00:52:02 +00:00
genesis.rs Altair consensus changes and refactors (#2279) 2021-07-09 06:15:32 +00:00
lib.rs Cache participating indices for Altair epoch processing (#2416) 2021-07-27 07:01:01 +00:00
macros.rs Directory Restructure (#1163) 2020-05-18 21:24:23 +10:00
metrics.rs Cache participating indices for Altair epoch processing (#2416) 2021-07-27 07:01:01 +00:00
per_block_processing.rs Use bulk verification for sync_aggregate signature (#2415) 2021-07-28 05:40:21 +00:00
per_epoch_processing.rs Cache participating indices for Altair epoch processing (#2416) 2021-07-27 07:01:01 +00:00
per_slot_processing.rs Altair consensus changes and refactors (#2279) 2021-07-09 06:15:32 +00:00
state_advance.rs Altair consensus changes and refactors (#2279) 2021-07-09 06:15:32 +00:00
upgrade.rs Altair consensus changes and refactors (#2279) 2021-07-09 06:15:32 +00:00
verify_operation.rs Detailed validator monitoring (#2151) 2021-01-20 19:19:38 +00:00