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.

91 lines
2.8 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. package types
  2. import (
  3. abci "github.com/tendermint/abci/types"
  4. )
  5. // NOTE/XXX: all type definitions in this file are considered UNSTABLE
  6. //------------------------------------------------------
  7. // blockchain services types
  8. // NOTE: Interfaces used by RPC must be thread safe!
  9. //------------------------------------------------------
  10. //------------------------------------------------------
  11. // mempool
  12. // Mempool defines the mempool interface as used by the ConsensusState.
  13. // Updates to the mempool need to be synchronized with committing a block
  14. // so apps can reset their transient state on Commit
  15. // UNSTABLE
  16. type Mempool interface {
  17. Lock()
  18. Unlock()
  19. Size() int
  20. CheckTx(Tx, func(*abci.Response)) error
  21. Reap(int) Txs
  22. Update(height int64, txs Txs) error
  23. Flush()
  24. TxsAvailable() <-chan int64
  25. EnableTxsAvailable()
  26. }
  27. // MockMempool is an empty implementation of a Mempool, useful for testing.
  28. // UNSTABLE
  29. type MockMempool struct {
  30. }
  31. func (m MockMempool) Lock() {}
  32. func (m MockMempool) Unlock() {}
  33. func (m MockMempool) Size() int { return 0 }
  34. func (m MockMempool) CheckTx(tx Tx, cb func(*abci.Response)) error { return nil }
  35. func (m MockMempool) Reap(n int) Txs { return Txs{} }
  36. func (m MockMempool) Update(height int64, txs Txs) error { return nil }
  37. func (m MockMempool) Flush() {}
  38. func (m MockMempool) TxsAvailable() <-chan int64 { return make(chan int64) }
  39. func (m MockMempool) EnableTxsAvailable() {}
  40. //------------------------------------------------------
  41. // blockstore
  42. // BlockStoreRPC is the block store interface used by the RPC.
  43. // UNSTABLE
  44. type BlockStoreRPC interface {
  45. Height() int64
  46. LoadBlockMeta(height int64) *BlockMeta
  47. LoadBlock(height int64) *Block
  48. LoadBlockPart(height int64, index int) *Part
  49. LoadBlockCommit(height int64) *Commit
  50. LoadSeenCommit(height int64) *Commit
  51. }
  52. // BlockStore defines the BlockStore interface used by the ConsensusState.
  53. // UNSTABLE
  54. type BlockStore interface {
  55. BlockStoreRPC
  56. SaveBlock(block *Block, blockParts *PartSet, seenCommit *Commit)
  57. }
  58. //------------------------------------------------------
  59. // evidence pool
  60. // EvidencePool defines the EvidencePool interface used by the ConsensusState.
  61. // UNSTABLE
  62. type EvidencePool interface {
  63. PendingEvidence() []Evidence
  64. AddEvidence(Evidence) error
  65. Update(*Block)
  66. }
  67. // MockMempool is an empty implementation of a Mempool, useful for testing.
  68. // UNSTABLE
  69. type MockEvidencePool struct {
  70. }
  71. func (m MockEvidencePool) PendingEvidence() []Evidence { return nil }
  72. func (m MockEvidencePool) AddEvidence(Evidence) error { return nil }
  73. func (m MockEvidencePool) Update(*Block) {}