lighthouse/beacon_node/beacon_chain/src/eth1_chain.rs

105 lines
3.2 KiB
Rust
Raw Normal View History

2019-09-03 05:22:00 +00:00
use crate::BeaconChainTypes;
use eth2_hashing::hash;
use std::marker::PhantomData;
2019-09-03 05:56:11 +00:00
use types::{BeaconState, Deposit, Eth1Data, EthSpec, Hash256};
2019-09-03 05:22:00 +00:00
type Result<T> = std::result::Result<T, Error>;
2019-09-03 05:56:11 +00:00
/// Holds an `Eth1ChainBackend` and serves requests from the `BeaconChain`.
2019-09-03 05:52:25 +00:00
pub struct Eth1Chain<T: BeaconChainTypes> {
backend: T::Eth1Chain,
}
impl<T: BeaconChainTypes> Eth1Chain<T> {
pub fn new(backend: T::Eth1Chain) -> Self {
Self { backend }
}
2019-09-03 05:56:11 +00:00
/// Returns the `Eth1Data` that should be included in a block being produced for the given
/// `state`.
2019-09-03 05:52:25 +00:00
pub fn eth1_data_for_block_production(
&self,
state: &BeaconState<T::EthSpec>,
) -> Result<Eth1Data> {
self.backend.eth1_data(state)
}
2019-09-03 05:56:11 +00:00
/// Returns a list of `Deposits` that may be included in a block.
///
/// Including all of the returned `Deposits` in a block should _not_ cause it to become
/// invalid.
2019-09-03 05:52:25 +00:00
pub fn deposits_for_block_inclusion(
&self,
state: &BeaconState<T::EthSpec>,
) -> Result<Vec<Deposit>> {
let deposits = self.backend.queued_deposits(state)?;
// TODO: truncate deposits if required.
Ok(deposits)
}
}
#[derive(Debug, PartialEq)]
2019-09-03 05:22:00 +00:00
pub enum Error {
/// Unable to return an Eth1Data for the given epoch.
EpochUnavailable,
/// An error from the backend service (e.g., the web3 data fetcher).
BackendError(String),
}
2019-09-03 05:52:25 +00:00
pub trait Eth1ChainBackend<T: EthSpec> {
2019-09-03 05:22:00 +00:00
/// Returns the `Eth1Data` that should be included in a block being produced for the given
/// `state`.
2019-09-03 05:52:25 +00:00
fn eth1_data(&self, beacon_state: &BeaconState<T>) -> Result<Eth1Data>;
2019-09-03 05:22:00 +00:00
/// Returns all `Deposits` between `state.eth1_deposit_index` and
/// `state.eth1_data.deposit_count`.
///
/// # Note:
///
/// It is possible that not all returned `Deposits` can be included in a block. E.g., there may
/// be more than `MAX_DEPOSIT_COUNT` or the churn may be too high.
2019-09-03 05:52:25 +00:00
fn queued_deposits(&self, beacon_state: &BeaconState<T>) -> Result<Vec<Deposit>>;
2019-09-03 05:22:00 +00:00
}
2019-09-03 05:52:25 +00:00
pub struct InteropEth1ChainBackend<T: EthSpec> {
2019-09-03 05:22:00 +00:00
_phantom: PhantomData<T>,
}
2019-09-03 05:52:25 +00:00
impl<T: EthSpec> Eth1ChainBackend<T> for InteropEth1ChainBackend<T> {
fn eth1_data(&self, state: &BeaconState<T>) -> Result<Eth1Data> {
2019-09-03 05:22:00 +00:00
let current_epoch = state.current_epoch();
2019-09-03 05:52:25 +00:00
let slots_per_voting_period = T::slots_per_eth1_voting_period() as u64;
2019-09-03 05:22:00 +00:00
let current_voting_period: u64 = current_epoch.as_u64() / slots_per_voting_period;
let deposit_root = hash(&int_to_bytes32(current_voting_period));
let block_hash = hash(&deposit_root);
Ok(Eth1Data {
deposit_root: Hash256::from_slice(&deposit_root),
deposit_count: state.eth1_deposit_index,
block_hash: Hash256::from_slice(&block_hash),
})
}
2019-09-03 05:56:11 +00:00
fn queued_deposits(&self, _: &BeaconState<T>) -> Result<Vec<Deposit>> {
2019-09-03 05:22:00 +00:00
Ok(vec![])
}
}
2019-09-03 05:52:25 +00:00
impl<T: EthSpec> Default for InteropEth1ChainBackend<T> {
fn default() -> Self {
Self {
_phantom: PhantomData,
}
}
}
2019-09-03 05:22:00 +00:00
/// Returns `int` as little-endian bytes with a length of 32.
fn int_to_bytes32(int: u64) -> Vec<u8> {
let mut vec = int.to_le_bytes().to_vec();
vec.resize(32, 0);
vec
}