docs: guidelines for proto message's String() method (#13364) (#13366)

(cherry picked from commit 8dd708d9cc)

Co-authored-by: likhita-809 <78951027+likhita-809@users.noreply.github.com>
This commit is contained in:
mergify[bot] 2022-09-23 08:26:34 -05:00 committed by GitHub
parent 72f8923484
commit c351441f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -274,6 +274,19 @@ type UnpackInterfacesMessage interface {
}
```
### Custom Stringer
Using `option (gogoproto.goproto_stringer) = false;` in a proto message definition leads to unexpected behaviour, like returning wrong output or having missing fields in the output.
For that reason a proto Message's `String()` must not be customized, and the `goproto_stringer` option must be avoided.
A correct YAML output can be obtained through ProtoJSON, using the `JSONToYAML` function:
+++ https://github.com/cosmos/cosmos-sdk/blob/v0.46.0/codec/yaml.go#L8-L20
For example:
+++ https://github.com/cosmos/cosmos-sdk/blob/v0.46.0/x/auth/types/account.go#L139-L151
## Next {hide}
Learn about [gRPC, REST and other endpoints](./grpc_rest.md) {hide}