You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
269 B

  1. package evidence
  2. import (
  3. "github.com/tendermint/tendermint/types"
  4. )
  5. //go:generate ../../scripts/mockery_generate.sh BlockStore
  6. type BlockStore interface {
  7. LoadBlockMeta(height int64) *types.BlockMeta
  8. LoadBlockCommit(height int64) *types.Commit
  9. Height() int64
  10. }