mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-12 12:51:22 +00:00
Fixes from review
This commit is contained in:
@ -20,11 +20,11 @@ type FullCommit struct {
|
||||
}
|
||||
|
||||
// NewFullCommit returns a new FullCommit.
|
||||
func NewFullCommit(signedHeader types.SignedHeader, valset, nvalset *types.ValidatorSet) FullCommit {
|
||||
func NewFullCommit(signedHeader types.SignedHeader, valset, nextValset *types.ValidatorSet) FullCommit {
|
||||
return FullCommit{
|
||||
SignedHeader: signedHeader,
|
||||
Validators: valset,
|
||||
NextValidators: nvalset,
|
||||
NextValidators: nextValset,
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user