tendermint/lite/types.go
Jae Kwon bf0ff212b9 Refactor "lite" to handle delayed validator set changes.
Also, fix consensus liveness issue.
2018-06-25 17:12:25 -07:00

14 lines
325 B
Go

package lite
import (
"github.com/tendermint/tendermint/types"
)
// Certifier checks the votes to make sure the block really is signed properly.
// Certifier must know the current or recent set of validitors by some other
// means.
type Certifier interface {
Certify(sheader types.SignedHeader) error
ChainID() string
}