mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
14 lines
325 B
Go
14 lines
325 B
Go
|
package lite
|
||
|
|
||
|
import (
|
||
|
"github.com/tendermint/tendermint/types"
|
||
|
)
|
||
|
|
||
|
// Certifier checks the votes to make sure the block really is signed properly.
|
||
|
// Certifier must know the current or recent set of validitors by some other
|
||
|
// means.
|
||
|
type Certifier interface {
|
||
|
Certify(sheader types.SignedHeader) error
|
||
|
ChainID() string
|
||
|
}
|