mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-11 06:11:07 +00:00
* lite2: move AutoClient into Client Most of the users will want auto update feature, so it makes sense to move it into the Client itself, rather than having a separate abstraction (it makes the code cleaner, but introduces an extra thing the user will need to learn). Also, add `FirstTrustedHeight` func to Client to get first trusted height. * fix db store tests * separate examples for auto and manual clients * AutoUpdate tries to update to latest state NOT 1 header at a time * fix errors * lite2: make Logger an option remove SetLogger func * fix lite cmd * lite2: make concurrency assumptions explicit * fixes after my own review * no need for nextHeightFn sequence func will download intermediate headers * correct comment
34 lines
1.0 KiB
Go
34 lines
1.0 KiB
Go
package provider
|
|
|
|
import "github.com/tendermint/tendermint/types"
|
|
|
|
// Provider provides information for the lite client to sync (verification
|
|
// happens in the client).
|
|
type Provider interface {
|
|
// ChainID returns the blockchain ID.
|
|
ChainID() string
|
|
|
|
// SignedHeader returns the SignedHeader that corresponds to the given
|
|
// height.
|
|
//
|
|
// 0 - the latest.
|
|
// height must be >= 0.
|
|
//
|
|
// If the provider fails to fetch the SignedHeader due to the IO or other
|
|
// issues, an error will be returned.
|
|
// If there's no SignedHeader for the given height, ErrSignedHeaderNotFound
|
|
// error is returned.
|
|
SignedHeader(height int64) (*types.SignedHeader, error)
|
|
|
|
// ValidatorSet returns the ValidatorSet that corresponds to height.
|
|
//
|
|
// 0 - the latest.
|
|
// height must be >= 0.
|
|
//
|
|
// If the provider fails to fetch the ValidatorSet due to the IO or other
|
|
// issues, an error will be returned.
|
|
// If there's no ValidatorSet for the given height, ErrValidatorSetNotFound
|
|
// error is returned.
|
|
ValidatorSet(height int64) (*types.ValidatorSet, error)
|
|
}
|