Liamsi 7 years ago
parent
commit
99fa7f8132
2 changed files with 5 additions and 4 deletions
  1. +2
    -2
      types/proto3/block.proto
  2. +3
    -2
      types/proto3_test.go

+ 2
- 2
types/proto3/block.proto View File

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

+ 3
- 2
types/proto3_test.go View File

@ -12,11 +12,12 @@ func TestProto3Compatibility(t *testing.T) {
// TODO(ismail): table tests instead... // 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") 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) assert.NoError(t, err)
seconds := tm.Unix()
nanos := int32(tm.Nanosecond())
pbHeader := proto3.Header{ pbHeader := proto3.Header{
ChainID: "cosmos", ChainID: "cosmos",
Height:150, Height:150,
Time: &proto3.Timestamp{Seconds:tm.Unix(), Nanos:int32(tm.Nanosecond())},
Time: &proto3.Timestamp{Seconds:seconds, Nanos:nanos},
NumTxs: 7, NumTxs: 7,
LastBlockID: &proto3.BlockID{ LastBlockID: &proto3.BlockID{
Hash: []byte("some serious hashing"), Hash: []byte("some serious hashing"),


Loading…
Cancel
Save