validator.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // Copyright 2017 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
  16. package validator
  17. import (
  18. "bytes"
  19. "github.com/ethereum/go-ethereum/common"
  20. "github.com/ethereum/go-ethereum/consensus/istanbul"
  21. )
  22. func New(addr common.Address) istanbul.Validator {
  23. return &defaultValidator{
  24. address: addr,
  25. }
  26. }
  27. func NewSet(addrs []common.Address, policy *istanbul.ProposerPolicy) istanbul.ValidatorSet {
  28. return newDefaultSet(addrs, policy)
  29. }
  30. func ExtractValidators(extraData []byte) []common.Address {
  31. // get the validator addresses
  32. addrs := make([]common.Address, (len(extraData) / common.AddressLength))
  33. for i := 0; i < len(addrs); i++ {
  34. copy(addrs[i][:], extraData[i*common.AddressLength:])
  35. }
  36. return addrs
  37. }
  38. // Check whether the extraData is presented in prescribed form
  39. func ValidExtraData(extraData []byte) bool {
  40. return len(extraData)%common.AddressLength == 0
  41. }
  42. func SortedAddresses(validators []istanbul.Validator) []common.Address {
  43. addrs := make([]common.Address, len(validators))
  44. for i, validator := range validators {
  45. addrs[i] = validator.Address()
  46. }
  47. for i := 0; i < len(addrs); i++ {
  48. for j := i + 1; j < len(addrs); j++ {
  49. if bytes.Compare(addrs[i][:], addrs[j][:]) > 0 {
  50. addrs[i], addrs[j] = addrs[j], addrs[i]
  51. }
  52. }
  53. }
  54. return addrs
  55. }