mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 20:11:22 +00:00
35c914baa6
This reverts commitd7a3545be1
, reversing changes made to1da06c156c
.
21 lines
598 B
Rust
21 lines
598 B
Rust
use super::EpochDuties;
|
|
use bls::PublicKey;
|
|
use types::Epoch;
|
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
|
pub enum BeaconNodeError {
|
|
RemoteFailure(String),
|
|
}
|
|
|
|
/// Defines the methods required to obtain a validators shuffling from a Beacon Node.
|
|
pub trait BeaconNode: Send + Sync {
|
|
/// Get the shuffling for the given epoch and public key.
|
|
///
|
|
/// Returns Ok(None) if the public key is unknown, or the shuffling for that epoch is unknown.
|
|
fn request_shuffling(
|
|
&self,
|
|
epoch: Epoch,
|
|
public_key: &PublicKey,
|
|
) -> Result<Option<EpochDuties>, BeaconNodeError>;
|
|
}
|