From ec48e30ea8cf0e5a6ecdfcc33cf50c52c3309f96 Mon Sep 17 00:00:00 2001 From: cheatfate Date: Wed, 24 Mar 2021 11:07:59 +0200 Subject: [PATCH] Fix fork/schedule procedure comment. --- beacon_chain/rpc/config_rest_api.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beacon_chain/rpc/config_rest_api.nim b/beacon_chain/rpc/config_rest_api.nim index 4e32d3975..da49c3480 100644 --- a/beacon_chain/rpc/config_rest_api.nim +++ b/beacon_chain/rpc/config_rest_api.nim @@ -25,7 +25,8 @@ func getDepositAddress(node: BeaconNode): string = proc installConfigApiHandlers*(router: var RestRouter, node: BeaconNode) = router.api(MethodGet, "/api/eth/v1/config/fork/schedule") do () -> RestApiResponse: - # TODO: This implementation doesn't look right. + # TODO: Implemenation needs a fix, when forks infrastructure will be + # established. return RestApiResponse.jsonResponse( [node.chainDag.headState.data.data.fork] )