Revision b53a2712df582d7ea4b3cf5aca0427e2e1b07751 authored by Anton Kaliaev on 15 December 2018, 20:38:13 UTC, committed by Ethan Buchman on 15 December 2018, 20:38:13 UTC
1 parent a75dab4
Raw File
types.go
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 {
	Verify(sheader types.SignedHeader) error
	ChainID() string
}
back to top