Probable fix for #140

This commit is contained in:
Jae Kwon
2015-09-10 01:29:49 -07:00
parent 3a5741f70f
commit 5e015bc669
2 changed files with 14 additions and 6 deletions

View File

@@ -59,7 +59,7 @@ func (voteSet *VoteSet) Height() int {
func (voteSet *VoteSet) Round() int {
if voteSet == nil {
return 0
return -1
} else {
return voteSet.round
}