Removes protolambda as an option of fork-choice.

This commit is contained in:
Age Manning 2019-02-14 16:56:12 +11:00
parent 7a03ee79aa
commit 7b39dad232
No known key found for this signature in database
GPG Key ID: 05EED64B79E06A93
2 changed files with 4 additions and 3 deletions

View File

@ -44,7 +44,7 @@ extern crate types;
pub mod longest_chain; pub mod longest_chain;
pub mod optimised_lmd_ghost; pub mod optimised_lmd_ghost;
pub mod protolambda_lmd_ghost; //pub mod protolambda_lmd_ghost;
pub mod slow_lmd_ghost; pub mod slow_lmd_ghost;
use db::stores::BeaconBlockAtSlotError; use db::stores::BeaconBlockAtSlotError;
@ -113,6 +113,7 @@ pub enum ForkChoiceAlgorithms {
SlowLMDGhost, SlowLMDGhost,
/// An optimised version of LMD-GHOST by Vitalik. /// An optimised version of LMD-GHOST by Vitalik.
OptimisedLMDGhost, OptimisedLMDGhost,
/// An optimised version of LMD-GHOST by Protolambda. // Protolambda currently not implemented
ProtoLMDGhost, // /// An optimised version of LMD-GHOST by Protolambda.
//ProtoLMDGhost,
} }