Fix compiler errors from BeaconChain refactor.

I accidentally forgot to include this in the last commit, my bad!
This commit is contained in:
Paul Hauner
2019-02-05 05:26:47 +11:00
parent c1ed5cd2d8
commit d83bafae10
3 changed files with 6 additions and 4 deletions

View File

@@ -415,7 +415,7 @@ where
/// Accept some block and attempt to add it to block DAG.
///
/// Will accept blocks from prior slots, however it will reject any block from a future slot.
pub fn process_block<V>(&self, block: BeaconBlock) -> Result<BlockProcessingOutcome, Error> {
pub fn process_block(&self, block: BeaconBlock) -> Result<BlockProcessingOutcome, Error> {
debug!("Processing block with slot {}...", block.slot());
let block_root = block.canonical_root();