github.com/pokt-network/tendermint@v0.32.11-0.20230426215212-59310158d3e9/lite/types.go (about)

     1  package lite
     2  
     3  import (
     4  	"github.com/tendermint/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  }