diff --git a/lcli/src/transition_blocks.rs b/lcli/src/transition_blocks.rs index 273e9f9568a..e7599135387 100644 --- a/lcli/src/transition_blocks.rs +++ b/lcli/src/transition_blocks.rs @@ -91,28 +91,6 @@ struct Config { exclude_post_block_thc: bool, } -/* -struct PubkeyCache { - pubkeys: Vec, - indices: HashMap, - pubkey_bytes: Vec, -} - -impl PubkeyCache { - pub fn new(state: &BeaconState) { - let validator_keys = state.validators().iter().map(|v| v.pubkey.clone()); - - self.pubkey_bytes.reserve(validator_keys.len()); - self.pubkeys.reserve(validator_keys.len()); - self.indices.reserve(validator_keys.len()); - - for pubkey in validator_keys { - } - - } -} -*/ - pub fn run(mut env: Environment, matches: &ArgMatches) -> Result<(), String> { let spec = &T::default_spec(); let executor = env.core_context().executor.clone();