This commit is contained in:
Ethan Buchman 2018-06-01 21:56:09 -04:00
parent 909f66e841
commit aa8be33da1
1 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ func (e MockGoodEvidence) Equal(ev Evidence) bool {
bytes.Equal(e.Address_, e2.Address_)
}
func (e MockGoodEvidence) String() string {
return fmt.Sprintf("GoodEvidence: %d/%s/%d", e.Height_, e.Address_)
return fmt.Sprintf("GoodEvidence: %d/%s", e.Height_, e.Address_)
}
// UNSTABLE
@ -169,7 +169,7 @@ func (e MockBadEvidence) Equal(ev Evidence) bool {
bytes.Equal(e.Address_, e2.Address_)
}
func (e MockBadEvidence) String() string {
return fmt.Sprintf("BadEvidence: %d/%s/%d", e.Height_, e.Address_)
return fmt.Sprintf("BadEvidence: %d/%s", e.Height_, e.Address_)
}
//-------------------------------------------