mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
* WIP: switching to fixed offsets for SignBytes * add version field to sign bytes and update order * more comments on test-cases and add a tc with a chainID * remove amino:"write_empty" tag - it doesn't affect if default fixed size fields ((u)int64) are written or not - add comment about int->int64 casting * update CHANGELOG_PENDING * update documentation * add back link to issue #1622 in documentation * remove JSON tags and add (failing test-case) * fix failing test * update test-vectors due to added `Type` field * change Type field from string to byte and add new type alias - SignedMsgType replaces VoteTypePrevote, VoteTypePrecommit and adds new ProposalType to separate votes from proposal when signed - update test-vectors * fix remains from rebasing * use SignMessageType instead of byte everywhere * fixes from review
40 lines
868 B
Go
40 lines
868 B
Go
package types
|
|
|
|
import (
|
|
tmtime "github.com/tendermint/tendermint/types/time"
|
|
)
|
|
|
|
func MakeCommit(blockID BlockID, height int64, round int,
|
|
voteSet *VoteSet,
|
|
validators []PrivValidator) (*Commit, error) {
|
|
|
|
// all sign
|
|
for i := 0; i < len(validators); i++ {
|
|
|
|
vote := &Vote{
|
|
ValidatorAddress: validators[i].GetAddress(),
|
|
ValidatorIndex: i,
|
|
Height: height,
|
|
Round: round,
|
|
Type: PrecommitType,
|
|
BlockID: blockID,
|
|
Timestamp: tmtime.Now(),
|
|
}
|
|
|
|
_, err := signAddVote(validators[i], vote, voteSet)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return voteSet.MakeCommit(), nil
|
|
}
|
|
|
|
func signAddVote(privVal PrivValidator, vote *Vote, voteSet *VoteSet) (signed bool, err error) {
|
|
err = privVal.SignVote(voteSet.ChainID(), vote)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return voteSet.AddVote(vote)
|
|
}
|