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.
 
 
 
 
 
 

15 lines
305 B

package proxy
import (
"github.com/tendermint/tendermint/types"
)
type State interface {
ReplayBlocks(*types.Header, types.PartSetHeader, AppConnConsensus, BlockStore) error
}
type BlockStore interface {
Height() int
LoadBlockMeta(height int) *types.BlockMeta
LoadBlock(height int) *types.Block
}