Fixes from review

This commit is contained in:
Jae Kwon
2018-06-19 23:55:15 -07:00
parent bf0ff212b9
commit 242a6037e8
8 changed files with 25 additions and 25 deletions

View File

@ -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,
}
}