|
|
@ -20,11 +20,12 @@ var ( |
|
|
|
// to be considered valid. It may depend on votes from a previous round,
|
|
|
|
// a so-called Proof-of-Lock (POL) round, as noted in the POLRound and POLBlockID.
|
|
|
|
type Proposal struct { |
|
|
|
Type SignedMsgType |
|
|
|
Height int64 `json:"height"` |
|
|
|
Round int `json:"round"` |
|
|
|
POLRound int `json:"pol_round"` // -1 if null.
|
|
|
|
Timestamp time.Time `json:"timestamp"` |
|
|
|
BlockPartsHeader PartSetHeader `json:"block_parts_header"` |
|
|
|
POLRound int `json:"pol_round"` // -1 if null.
|
|
|
|
POLBlockID BlockID `json:"pol_block_id"` // zero if null.
|
|
|
|
Signature []byte `json:"signature"` |
|
|
|
} |
|
|
@ -33,11 +34,12 @@ type Proposal struct { |
|
|
|
// If there is no POLRound, polRound should be -1.
|
|
|
|
func NewProposal(height int64, round int, blockPartsHeader PartSetHeader, polRound int, polBlockID BlockID) *Proposal { |
|
|
|
return &Proposal{ |
|
|
|
Type: ProposalType, |
|
|
|
Height: height, |
|
|
|
Round: round, |
|
|
|
POLRound: polRound, |
|
|
|
Timestamp: tmtime.Now(), |
|
|
|
BlockPartsHeader: blockPartsHeader, |
|
|
|
POLRound: polRound, |
|
|
|
POLBlockID: polBlockID, |
|
|
|
} |
|
|
|
} |
|
|
@ -45,9 +47,13 @@ func NewProposal(height int64, round int, blockPartsHeader PartSetHeader, polRou |
|
|
|
// String returns a string representation of the Proposal.
|
|
|
|
func (p *Proposal) String() string { |
|
|
|
return fmt.Sprintf("Proposal{%v/%v %v (%v,%v) %X @ %s}", |
|
|
|
p.Height, p.Round, p.BlockPartsHeader, p.POLRound, |
|
|
|
p.Height, |
|
|
|
p.Round, |
|
|
|
p.BlockPartsHeader, |
|
|
|
p.POLRound, |
|
|
|
p.POLBlockID, |
|
|
|
cmn.Fingerprint(p.Signature), CanonicalTime(p.Timestamp)) |
|
|
|
cmn.Fingerprint(p.Signature), |
|
|
|
CanonicalTime(p.Timestamp)) |
|
|
|
} |
|
|
|
|
|
|
|
// SignBytes returns the Proposal bytes for signing
|
|
|
|