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
+3 -5
View File
@@ -33,9 +33,9 @@ message MsgRequest {
repeated bool bools = 21;
repeated uint32 uints = 22;
repeated string strings = 23;
repeated testpb.Enum enums = 24;
repeated google.protobuf.Duration durations = 25;
repeated testpb.AMessage some_messages = 26;
repeated testpb.Enum enums = 24;
repeated google.protobuf.Duration durations = 25;
repeated testpb.AMessage some_messages = 26;
int32 positional1 = 27;
string positional2 = 28;
@@ -46,8 +46,6 @@ message MsgRequest {
bool hidden_bool = 32;
}
message MsgResponse {
MsgRequest request = 1;
}