docs: improve proto vesting docs about time attributes (#15474)

## Description

Added a little bit more comments to note about the meaning / type of the numeric time values.

When I'm creating the vesting accounts, I always have to  double check it, and end up looking at the code.
This commit is contained in:
Robert Zaremba
2023-03-20 16:40:19 +00:00
committed by GitHub
parent a8dceddad9
commit 5612bb815b
12 changed files with 96 additions and 81 deletions
@@ -41,10 +41,10 @@ message TestNullableFields {
message IntAsString {
string int_as_string = 1 [
(cosmos_proto.scalar) = "cosmos.Int",
(cosmos_proto.scalar) = "cosmos.Int",
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
(amino.dont_omitempty) = true,
(gogoproto.nullable) = false
(gogoproto.nullable) = false
];
}