lighthouse/eth2/lmd_ghost/src/lib.rs

25 lines
568 B
Rust
Raw Normal View History

mod reduced_tree;
2019-06-15 15:26:56 +00:00
use std::sync::Arc;
use store::Store;
use types::{EthSpec, Hash256, Slot};
2019-06-15 15:26:56 +00:00
pub use reduced_tree::ThreadSafeReducedTree;
2019-06-15 15:26:56 +00:00
pub type Result<T> = std::result::Result<T, String>;
2019-06-15 15:26:56 +00:00
pub trait LmdGhost<S: Store, E: EthSpec>: Send + Sync {
fn new(store: Arc<S>) -> Self;
2019-06-15 15:26:56 +00:00
fn process_message(
&self,
validator_index: usize,
block_hash: Hash256,
block_slot: Slot,
) -> Result<()>;
2019-06-15 19:05:34 +00:00
fn find_head<F>(&self, start_block_root: Hash256, weight: F) -> Result<Hash256>
where
F: Fn(usize) -> Option<u64>;
2019-06-15 15:26:56 +00:00
}