diff --git a/Cargo.toml b/Cargo.toml index 7bf700ee5f..29a16033f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace] members = [ - "eth2/lmd_ghost", + "eth2/proto_array_fork_choice", "eth2/operation_pool", "eth2/state_processing", "eth2/types", diff --git a/eth2/lmd_ghost/Cargo.toml b/eth2/proto_array_fork_choice/Cargo.toml similarity index 63% rename from eth2/lmd_ghost/Cargo.toml rename to eth2/proto_array_fork_choice/Cargo.toml index da2b44cd4b..0464907d3d 100644 --- a/eth2/lmd_ghost/Cargo.toml +++ b/eth2/proto_array_fork_choice/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "lmd_ghost" +name = "proto_array_fork_choice" version = "0.1.0" -authors = ["Age Manning ", "Paul Hauner "] +authors = ["Paul Hauner "] edition = "2018" [dependencies] diff --git a/eth2/lmd_ghost/src/lib.rs b/eth2/proto_array_fork_choice/src/lib.rs similarity index 100% rename from eth2/lmd_ghost/src/lib.rs rename to eth2/proto_array_fork_choice/src/lib.rs diff --git a/eth2/lmd_ghost/src/proto_array.rs b/eth2/proto_array_fork_choice/src/proto_array.rs similarity index 100% rename from eth2/lmd_ghost/src/proto_array.rs rename to eth2/proto_array_fork_choice/src/proto_array.rs diff --git a/eth2/lmd_ghost/src/ssz_container.rs b/eth2/proto_array_fork_choice/src/ssz_container.rs similarity index 100% rename from eth2/lmd_ghost/src/ssz_container.rs rename to eth2/proto_array_fork_choice/src/ssz_container.rs diff --git a/eth2/lmd_ghost/tests/test.rs b/eth2/proto_array_fork_choice/tests/test.rs similarity index 100% rename from eth2/lmd_ghost/tests/test.rs rename to eth2/proto_array_fork_choice/tests/test.rs