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

8 years ago
8 years ago
8 years ago
  1. package proxy
  2. import (
  3. "github.com/tendermint/tendermint/types"
  4. )
  5. type State interface {
  6. ReplayBlocks(*types.Header, types.PartSetHeader, AppConnConsensus, BlockStore) error
  7. }
  8. type BlockStore interface {
  9. Height() int
  10. LoadBlockMeta(height int) *types.BlockMeta
  11. LoadBlock(height int) *types.Block
  12. }