use beacon_chain::{BeaconChain, BeaconChainTypes}; use iron::typemap::Key; use std::marker::PhantomData; use std::sync::Arc; pub struct BeaconChainKey { _phantom: PhantomData, } impl Key for BeaconChainKey { type Value = Arc>; }