chore: make function comment match function names (#20666)

Signed-off-by: fudancoder <fudancoder@icloud.com>
This commit is contained in:
fudancoder 2024-06-14 06:45:49 +09:00 committed by GitHub
parent f4136797a1
commit 433e3fd6d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -210,7 +210,7 @@ func ToSDKEvidence(ev []abci.Misbehavior) []*comet.Evidence {
return evidence
}
// ToSDKDecidedCommitInfo takes comet commit info and returns sdk commit info
// ToSDKCommitInfo takes comet commit info and returns sdk commit info
func ToSDKCommitInfo(commit abci.CommitInfo) *comet.CommitInfo {
ci := comet.CommitInfo{
Round: commit.Round,

View File

@ -23,7 +23,7 @@ func NewGasMeterService() gas.Service {
type gasService struct{}
// GetGasConfig implements gas.Service.
// GasConfig implements gas.Service.
func (g gasService) GasConfig(ctx context.Context) gas.GasConfig {
panic("unimplemented")
}

View File

@ -40,12 +40,12 @@ func (mockStateCodec) GetMsgAnySigners(msg *types.Any) ([][]byte, protoreflect.M
panic("unimplemented")
}
// GetMsgV1Signers implements codec.Codec.
// GetMsgSigners implements codec.Codec.
func (mockStateCodec) GetMsgSigners(msg gogoproto.Message) ([][]byte, protoreflect.Message, error) {
panic("unimplemented")
}
// GetMsgV2Signers implements codec.Codec.
// GetReflectMsgSigners implements codec.Codec.
func (mockStateCodec) GetReflectMsgSigners(msg protoreflect.Message) ([][]byte, error) {
panic("unimplemented")
}