docs: update docs (#19676)

Co-authored-by: son trinh <son@decentrio.ventures>
Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
Qt
2024-03-08 16:59:11 +00:00
committed by GitHub
co-authored by son trinh Julien Robert
parent 2bf7e9f846
commit 2bfc037a07
24 changed files with 201 additions and 195 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ import (
type LegacyMsg interface {
sdk.Msg
// Get the canonical byte representation of the Msg.
// GetSignBytes get the canonical byte representation of the Msg.
GetSignBytes() []byte
}
@@ -92,7 +92,7 @@ type StdSignature struct {
Signature []byte `json:"signature" yaml:"signature"`
}
// Deprecated
// Deprecated: NewStdSignature returns a std signature
func NewStdSignature(pk cryptotypes.PubKey, sig []byte) StdSignature {
return StdSignature{PubKey: pk, Signature: sig}
}