You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.6 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. package consensus
  2. import (
  3. "errors"
  4. "fmt"
  5. "io"
  6. "github.com/tendermint/tendermint/account"
  7. "github.com/tendermint/tendermint/binary"
  8. . "github.com/tendermint/tendermint/common"
  9. "github.com/tendermint/tendermint/types"
  10. )
  11. var (
  12. ErrInvalidBlockPartSignature = errors.New("Error invalid block part signature")
  13. ErrInvalidBlockPartHash = errors.New("Error invalid block part hash")
  14. )
  15. type Proposal struct {
  16. Height int `json:"height"`
  17. Round int `json:"round"`
  18. BlockPartsHeader types.PartSetHeader `json:"block_parts_header"`
  19. POLRound int `json:"pol_round"` // -1 if null.
  20. Signature account.SignatureEd25519 `json:"signature"`
  21. }
  22. func NewProposal(height int, round int, blockPartsHeader types.PartSetHeader, polRound int) *Proposal {
  23. return &Proposal{
  24. Height: height,
  25. Round: round,
  26. BlockPartsHeader: blockPartsHeader,
  27. POLRound: polRound,
  28. }
  29. }
  30. func (p *Proposal) String() string {
  31. return fmt.Sprintf("Proposal{%v/%v %v %v %v}", p.Height, p.Round,
  32. p.BlockPartsHeader, p.POLRound, p.Signature)
  33. }
  34. func (p *Proposal) WriteSignBytes(chainID string, w io.Writer, n *int64, err *error) {
  35. binary.WriteTo([]byte(Fmt(`{"chain_id":"%s"`, chainID)), w, n, err)
  36. binary.WriteTo([]byte(`,"proposal":{"block_parts_header":`), w, n, err)
  37. p.BlockPartsHeader.WriteSignBytes(w, n, err)
  38. binary.WriteTo([]byte(Fmt(`,"height":%v,"pol_round":%v`, p.Height, p.POLRound)), w, n, err)
  39. binary.WriteTo([]byte(Fmt(`,"round":%v}}`, p.Round)), w, n, err)
  40. }