mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 21:36:26 +00:00
lite2: return height as 2nd return param in TrustedValidatorSet (#4479)
Closes #4473
This commit is contained in:
@@ -28,7 +28,7 @@ type Client interface {
|
||||
|
||||
// get trusted headers & validators
|
||||
TrustedHeader(height int64) (*types.SignedHeader, error)
|
||||
TrustedValidatorSet(height int64) (*types.ValidatorSet, error)
|
||||
TrustedValidatorSet(height int64) (valSet *types.ValidatorSet, heightUsed int64, err error)
|
||||
LastTrustedHeight() (int64, error)
|
||||
FirstTrustedHeight() (int64, error)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user