From e5965ababe944d7470b4c21c52d09af93a8640b6 Mon Sep 17 00:00:00 2001 From: Jeremiah Andrews Date: Mon, 20 Aug 2018 22:20:18 -0700 Subject: [PATCH] Update spec for ordering of Commit struct values --- docs/spec/blockchain/blockchain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/spec/blockchain/blockchain.md b/docs/spec/blockchain/blockchain.md index 73a24f649..ca64add52 100644 --- a/docs/spec/blockchain/blockchain.md +++ b/docs/spec/blockchain/blockchain.md @@ -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 } ```