From 4c2667a4e25e9580648079ae8db07decddb0d830 Mon Sep 17 00:00:00 2001 From: LeoLiao Date: Fri, 6 Jul 2018 23:18:58 +0800 Subject: [PATCH] consensus/clique/api.go: fixed documentation typo --- consensus/clique/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/clique/api.go b/consensus/clique/api.go index b875eef012..6bcf987af5 100644 --- a/consensus/clique/api.go +++ b/consensus/clique/api.go @@ -75,7 +75,7 @@ func (api *API) GetSigners(number *rpc.BlockNumber) ([]common.Address, error) { return snap.signers(), nil } -// GetSignersAtHash retrieves the state snapshot at a given block. +// GetSignersAtHash retrieves the list of authorized signers at the specified block. func (api *API) GetSignersAtHash(hash common.Hash) ([]common.Address, error) { header := api.chain.GetHeaderByHash(hash) if header == nil {