Revision 15aa8d82b3ed0091fa526f2fa2e6fe18e9b53605 authored by Greg Szabo on 09 January 2020, 09:42:30 UTC, committed by Anton Kaliaev on 09 January 2020, 09:42:30 UTC
1 parent 6d91c1f
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