1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-05-06 03:52:15 +00:00

14 lines
322 B
Go
Raw Normal View History

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