Browse Source

Remove unnecessary bytes.Compare() call

pull/1341/head
Eugene Chung 7 years ago
committed by GitHub
parent
commit
a61130aebb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      types/validator.go

+ 3
- 2
types/validator.go View File

@ -45,9 +45,10 @@ func (v *Validator) CompareAccum(other *Validator) *Validator {
} else if v.Accum < other.Accum { } else if v.Accum < other.Accum {
return other return other
} else { } else {
if bytes.Compare(v.Address, other.Address) < 0 {
result := bytes.Compare(v.Address, other.Address)
if result < 0 {
return v return v
} else if bytes.Compare(v.Address, other.Address) > 0 {
} else if result > 0 {
return other return other
} else { } else {
cmn.PanicSanity("Cannot compare identical validators") cmn.PanicSanity("Cannot compare identical validators")


Loading…
Cancel
Save