Make BeaconChain CheckPoint fields public

This commit is contained in:
Paul Hauner
2019-01-27 15:39:34 +11:00
parent 1082c8857a
commit 8e9a139560

View File

@@ -32,10 +32,10 @@ pub enum BeaconChainError {
} }
pub struct CheckPoint { pub struct CheckPoint {
beacon_block: BeaconBlock, pub beacon_block: BeaconBlock,
beacon_block_root: Hash256, pub beacon_block_root: Hash256,
beacon_state: BeaconState, pub beacon_state: BeaconState,
beacon_state_root: Hash256, pub beacon_state_root: Hash256,
} }
impl CheckPoint { impl CheckPoint {