mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +00:00
## Issue Addressed N/A ## Proposed Changes - Removing a bunch of unnecessary references - Updated `Error::VariantError` to `Error::Variant` - There were additional enum variant lints that I ignored, because I thought our variant names were fine - removed `MonitoredValidator`'s `pubkey` field, because I couldn't find it used anywhere. It looks like we just use the string version of the pubkey (the `id` field) if there is no index ## Additional Info Co-authored-by: realbigsean <seananderson33@gmail.com>
70 lines
2.0 KiB
Rust
70 lines
2.0 KiB
Rust
use super::errors::{BlockOperationError, DepositInvalid};
|
|
use crate::per_block_processing::signature_sets::deposit_pubkey_signature_message;
|
|
use merkle_proof::verify_merkle_proof;
|
|
use safe_arith::SafeArith;
|
|
use tree_hash::TreeHash;
|
|
use types::*;
|
|
|
|
type Result<T> = std::result::Result<T, BlockOperationError<DepositInvalid>>;
|
|
|
|
fn error(reason: DepositInvalid) -> BlockOperationError<DepositInvalid> {
|
|
BlockOperationError::invalid(reason)
|
|
}
|
|
|
|
/// Verify `Deposit.pubkey` signed `Deposit.signature`.
|
|
///
|
|
/// Spec v0.12.1
|
|
pub fn verify_deposit_signature(deposit_data: &DepositData, spec: &ChainSpec) -> Result<()> {
|
|
let (public_key, signature, msg) = deposit_pubkey_signature_message(deposit_data, spec)
|
|
.ok_or_else(|| error(DepositInvalid::BadBlsBytes))?;
|
|
|
|
verify!(
|
|
signature.verify(&public_key, msg),
|
|
DepositInvalid::BadSignature
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Returns a `Some(validator index)` if a pubkey already exists in the `validators`,
|
|
/// otherwise returns `None`.
|
|
///
|
|
/// ## Errors
|
|
///
|
|
/// Errors if the state's `pubkey_cache` is not current.
|
|
pub fn get_existing_validator_index<T: EthSpec>(
|
|
state: &mut BeaconState<T>,
|
|
pub_key: &PublicKeyBytes,
|
|
) -> Result<Option<u64>> {
|
|
let validator_index = state.get_validator_index(pub_key)?;
|
|
Ok(validator_index.map(|idx| idx as u64))
|
|
}
|
|
|
|
/// Verify that a deposit is included in the state's eth1 deposit root.
|
|
///
|
|
/// The deposit index is provided as a parameter so we can check proofs
|
|
/// before they're due to be processed, and in parallel.
|
|
///
|
|
/// Spec v0.12.1
|
|
pub fn verify_deposit_merkle_proof<T: EthSpec>(
|
|
state: &BeaconState<T>,
|
|
deposit: &Deposit,
|
|
deposit_index: u64,
|
|
spec: &ChainSpec,
|
|
) -> Result<()> {
|
|
let leaf = deposit.data.tree_hash_root();
|
|
|
|
verify!(
|
|
verify_merkle_proof(
|
|
leaf,
|
|
&deposit.proof[..],
|
|
spec.deposit_contract_tree_depth.safe_add(1)? as usize,
|
|
deposit_index as usize,
|
|
state.eth1_data().deposit_root,
|
|
),
|
|
DepositInvalid::BadMerkleProof
|
|
);
|
|
|
|
Ok(())
|
|
}
|