Browse Source

Update vote log

pull/67/head
Jae Kwon 9 years ago
parent
commit
8b6d489755
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      consensus/reactor.go
  2. +1
    -1
      types/vote.go

+ 1
- 1
consensus/reactor.go View File

@ -892,5 +892,5 @@ type HasVoteMessage struct {
}
func (m *HasVoteMessage) String() string {
return fmt.Sprintf("[HasVote %v/%v T:%X VI:%v]", m.Height, m.Round, m.Type, m.Index)
return fmt.Sprintf("[HasVote VI:%v V:Vote{%v/%02d/%v}]", m.Index, m.Height, m.Round, m.Type)
}

+ 1
- 1
types/vote.go View File

@ -71,5 +71,5 @@ func (vote *Vote) String() string {
panic("Unknown vote type")
}
return fmt.Sprintf("%v{%v/%v %X#%v %v}", typeString, vote.Height, vote.Round, Fingerprint(vote.BlockHash), vote.BlockParts, vote.Signature)
return fmt.Sprintf("Vote{%v/%02d/%v(%v) %X#%v %v}", vote.Height, vote.Round, vote.Type, typeString, Fingerprint(vote.BlockHash), vote.BlockParts, vote.Signature)
}

Loading…
Cancel
Save