Update CanonicalSignBytes godoc

This commit is contained in:
Aleksandr Bezobchuk 2020-03-16 11:52:07 -04:00
parent ba150a8e75
commit b557d4278f
No known key found for this signature in database
GPG Key ID: 7DAC30FBD99879B0
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ type (
GetMemo() string
SetMemo(string)
// CanonicalSignBytes returns the canonical JSON bytes to sign over, given a
// chain ID, along with an account and sequence number. The JSON encoding
// ensures all field names adhere to their proto definition, default values
// are omitted, and follows the JSON Canonical Form.
CanonicalSignBytes(cid string, num, seq uint64) ([]byte, error)
}
)