chore: make function comment match function names (#20666)
Signed-off-by: fudancoder <fudancoder@icloud.com>
This commit is contained in:
parent
f4136797a1
commit
433e3fd6d9
@ -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,
|
||||
|
||||
@ -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")
|
||||
}
|
||||
|
||||
@ -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")
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user