github.com/okex/exchain@v1.8.0/libs/tendermint/lite/types.go (about) 1 package lite 2 3 import ( 4 "github.com/okex/exchain/libs/tendermint/types" 5 ) 6 7 // Verifier checks the votes to make sure the block really is signed properly. 8 // Verifier must know the current or recent set of validitors by some other 9 // means. 10 type Verifier interface { 11 Verify(sheader types.SignedHeader) error 12 ChainID() string 13 }