diff --git a/lighthouse/beacon_chain/src/block_production.rs b/lighthouse/beacon_chain/src/block_production.rs index b83669cd2..ba781d6e9 100644 --- a/lighthouse/beacon_chain/src/block_production.rs +++ b/lighthouse/beacon_chain/src/block_production.rs @@ -18,6 +18,11 @@ where Error: From<::Error>, { pub fn produce_block(&mut self) -> Result<(BeaconBlock, BeaconState), Error> { + /* + * Important: this code is a big stub and only exists to ensure that tests pass. + * + * https://github.com/sigp/lighthouse/issues/107 + */ let present_slot = self .slot_clock .present_slot()?