https://github.com/tendermint/tendermint
Raw File
Tip revision: 4e0dad30869933b51ffd2e54d8f751367f8ac228 authored by William Banfield on 01 April 2022, 17:32:11 UTC
stop using %w in testing errors
Tip revision: 4e0dad3
services.go
package evidence

import (
	"github.com/tendermint/tendermint/types"
)

//go:generate mockery --case underscore --name BlockStore

type BlockStore interface {
	LoadBlockMeta(height int64) *types.BlockMeta
	LoadBlockCommit(height int64) *types.Commit
	Height() int64
}
back to top