Rename "state" to "chain_state"

This commit is contained in:
Paul Hauner 2018-08-23 18:31:58 +10:00
parent b81ffd0781
commit c4f9f927f3
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
pub struct Config {
pub struct ChainConfig {
pub cycle_length: u8,
}
impl Config {
impl ChainConfig {
pub fn standard() -> Self {
Self {
cycle_length: 8,

View File

@ -9,7 +9,7 @@ use super::utils;
pub mod active_state;
pub mod attestation_record;
pub mod crystallized_state;
pub mod config;
pub mod chain_config;
pub mod block;
pub mod crosslink_record;
pub mod shard_and_committee;