From c00dc0a96b197f6d42d06bb78085f675a6c6aa4f Mon Sep 17 00:00:00 2001 From: Grant Wuerker Date: Mon, 7 Jan 2019 19:35:30 -0600 Subject: [PATCH] removed crystallized state ref --- beacon_chain/genesis/src/beacon_state.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/beacon_chain/genesis/src/beacon_state.rs b/beacon_chain/genesis/src/beacon_state.rs index 9724800f8..f9c2ef327 100644 --- a/beacon_chain/genesis/src/beacon_state.rs +++ b/beacon_chain/genesis/src/beacon_state.rs @@ -12,8 +12,6 @@ pub enum Error { pub fn genesis_beacon_state(spec: &ChainSpec) -> Result { /* * Assign the validators to shards, using all zeros as the seed. - * - * Crystallizedstate stores two cycles, so we simply repeat the same assignment twice. */ let _shard_and_committee_for_slots = { let mut a = shard_and_committees_for_cycle(&[0; 32], &spec.initial_validators, 0, &spec)?;