mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-07 05:46:32 +00:00
12 lines
207 B
Go
12 lines
207 B
Go
package evidence
|
|
|
|
import (
|
|
"github.com/tendermint/tendermint/types"
|
|
)
|
|
|
|
//go:generate mockery --case underscore --name BlockStore
|
|
|
|
type BlockStore interface {
|
|
LoadBlockMeta(height int64) *types.BlockMeta
|
|
}
|