Fix naming consistency with attester crate.

Adjusted naming of files to ensure they match the name of the struct.
Also change the name of some structs so they don't look like tests.
This commit is contained in:
Paul Hauner
2019-02-05 16:41:18 +11:00
parent af50c28e0f
commit 49dcb38c31
5 changed files with 19 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
mod beacon_node;
mod epoch_map;
mod signer;
mod local_signer;
mod simulated_beacon_node;
pub use self::beacon_node::TestBeaconNode;
pub use self::epoch_map::TestEpochMap;
pub use self::signer::TestSigner;
pub use self::epoch_map::EpochMap;
pub use self::local_signer::LocalSigner;
pub use self::simulated_beacon_node::SimulatedBeaconNode;