Revision 5f5e0e1d027d42d8ed3516d520ddaa10830ffc9e authored by Erik Grinaker on 14 February 2020, 13:41:18 UTC, committed by GitHub on 14 February 2020, 13:41:18 UTC
The .PHONY targets in the Makefile are usually placed far away from the actual targets, and thus aren't always updated. Placing the .PHONY targets right next to the targets they cover make them more visible and thus more likely to be updated when necessary.
1 parent 3b5794f
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