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
1 changed files with 2 additions and 2 deletions

View File

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