Fixed small bug with get_fork function

This commit is contained in:
Luke Anderson 2019-09-13 19:14:09 +10:00
parent 91f5f17566
commit 006350c0cd
No known key found for this signature in database
GPG Key ID: 44408169EC61E228

View File

@ -122,7 +122,7 @@ pub fn get_block_root<T: BeaconChainTypes + 'static>(req: Request<Body>) -> ApiR
/// HTTP handler to return the `Fork` of the current head.
pub fn get_fork<T: BeaconChainTypes + 'static>(req: Request<Body>) -> ApiResult {
let beacon_chain = get_beacon_chain_from_request::<T>(&req)?;
ResponseBuilder::new(&req).body(&beacon_chain.head().beacon_state)
ResponseBuilder::new(&req).body(&beacon_chain.head().beacon_state.fork)
}
/// HTTP handler to return the set of validators for an `Epoch`