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.

11 lines
207 B

  1. package evidence
  2. import (
  3. "github.com/tendermint/tendermint/types"
  4. )
  5. //go:generate mockery --case underscore --name BlockStore
  6. type BlockStore interface {
  7. LoadBlockMeta(height int64) *types.BlockMeta
  8. }