Update spec for ordering of Commit struct values

This commit is contained in:
Jeremiah Andrews
2018-08-20 22:20:18 -07:00
parent f403195f67
commit e5965ababe

View File

@ -115,10 +115,10 @@ height and round by a sufficient set of validators.
```go ```go
type Commit struct { type Commit struct {
HeightNum int64
RoundNum int
BlockID BlockID BlockID BlockID
Precommits []*CommitSig Precommits []*CommitSig
RoundNum int
HeightNum int64
} }
``` ```