This commit is contained in:
Liamsi 2018-06-13 00:43:06 -07:00
parent 82104c9329
commit 99fa7f8132
2 changed files with 5 additions and 4 deletions

View File

@ -39,6 +39,6 @@ message Header {
}
message Timestamp {
sint64 seconds = 1;
sint32 nanos = 2;
sfixed64 seconds = 1;
sfixed32 nanos = 2;
}

View File

@ -12,11 +12,12 @@ func TestProto3Compatibility(t *testing.T) {
// TODO(ismail): table tests instead...
tm, err := time.Parse("Mon Jan 2 15:04:05 -0700 MST 2006", "Mon Jan 2 15:04:05 -0700 MST 2006")
assert.NoError(t, err)
seconds := tm.Unix()
nanos := int32(tm.Nanosecond())
pbHeader := proto3.Header{
ChainID: "cosmos",
Height:150,
Time: &proto3.Timestamp{Seconds:tm.Unix(), Nanos:int32(tm.Nanosecond())},
Time: &proto3.Timestamp{Seconds:seconds, Nanos:nanos},
NumTxs: 7,
LastBlockID: &proto3.BlockID{
Hash: []byte("some serious hashing"),