From 7b39dad232f97b2d69f0189602cf4d30c948373d Mon Sep 17 00:00:00 2001 From: Age Manning Date: Thu, 14 Feb 2019 16:56:12 +1100 Subject: [PATCH] Removes protolambda as an option of fork-choice. --- eth2/fork_choice/src/lib.rs | 7 ++++--- eth2/fork_choice/src/protolambda_lmd_ghost.rs | 0 2 files changed, 4 insertions(+), 3 deletions(-) delete mode 100644 eth2/fork_choice/src/protolambda_lmd_ghost.rs diff --git a/eth2/fork_choice/src/lib.rs b/eth2/fork_choice/src/lib.rs index f79f7e8c1..820a33ec1 100644 --- a/eth2/fork_choice/src/lib.rs +++ b/eth2/fork_choice/src/lib.rs @@ -44,7 +44,7 @@ extern crate types; pub mod longest_chain; pub mod optimised_lmd_ghost; -pub mod protolambda_lmd_ghost; +//pub mod protolambda_lmd_ghost; pub mod slow_lmd_ghost; use db::stores::BeaconBlockAtSlotError; @@ -113,6 +113,7 @@ pub enum ForkChoiceAlgorithms { SlowLMDGhost, /// An optimised version of LMD-GHOST by Vitalik. OptimisedLMDGhost, - /// An optimised version of LMD-GHOST by Protolambda. - ProtoLMDGhost, + // Protolambda currently not implemented + // /// An optimised version of LMD-GHOST by Protolambda. + //ProtoLMDGhost, } diff --git a/eth2/fork_choice/src/protolambda_lmd_ghost.rs b/eth2/fork_choice/src/protolambda_lmd_ghost.rs deleted file mode 100644 index e69de29bb..000000000