Documentation ¶
Index ¶
- Constants
- type Mempool
- func (mem *Mempool) CheckTx(tx types.Tx, cb func(*abci.Response)) (err error)
- func (mem *Mempool) EnableTxsAvailable()
- func (mem *Mempool) Flush()
- func (mem *Mempool) Lock()
- func (mem *Mempool) Reap(maxTxs int) types.Txs
- func (mem *Mempool) SetLogger(l log.Logger)
- func (mem *Mempool) Size() int
- func (mem *Mempool) TxsAvailable() <-chan int
- func (mem *Mempool) TxsFrontWait() *clist.CElement
- func (mem *Mempool) Unlock()
- func (mem *Mempool) Update(height int, txs types.Txs)
- type MempoolMessage
- type MempoolReactor
- func (memR *MempoolReactor) AddPeer(peer *p2p.Peer)
- func (memR *MempoolReactor) BroadcastTx(tx types.Tx, cb func(*abci.Response)) error
- func (memR *MempoolReactor) GetChannels() []*p2p.ChannelDescriptor
- func (memR *MempoolReactor) Receive(chID byte, src *p2p.Peer, msgBytes []byte)
- func (memR *MempoolReactor) RemovePeer(peer *p2p.Peer, reason interface{})
- func (memR *MempoolReactor) SetEventSwitch(evsw types.EventSwitch)
- type Peer
- type PeerState
- type TxMessage
Constants ¶
const (
MempoolChannel = byte(0x30)
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Mempool ¶
type Mempool struct {
// contains filtered or unexported fields
}
Mempool is an ordered in-memory pool for transactions before they are proposed in a consensus round. Transaction validity is checked using the CheckTx abci message before the transaction is added to the pool. The Mempool uses a concurrent list structure for storing transactions that can be efficiently accessed by multiple concurrent readers.
func NewMempool ¶
func NewMempool(config *cfg.MempoolConfig, proxyAppConn proxy.AppConnMempool, height int) *Mempool
NewMempool returns a new Mempool with the given configuration and connection to an application.
func (*Mempool) CheckTx ¶
CheckTx executes a new transaction against the application to determine its validity and whether it should be added to the mempool. It blocks if we're waiting on Update() or Reap(). cb: A callback from the CheckTx command.
It gets called from another goroutine.
CONTRACT: Either cb will get called, or err returned.
func (*Mempool) EnableTxsAvailable ¶
func (mem *Mempool) EnableTxsAvailable()
EnableTxsAvailable initializes the TxsAvailable channel, ensuring it will trigger once every height when transactions are available. NOTE: not thread safe - should only be called once, on startup
func (*Mempool) Flush ¶
func (mem *Mempool) Flush()
Flush removes all transactions from the mempool and cache
func (*Mempool) Lock ¶
func (mem *Mempool) Lock()
Lock locks the mempool. The consensus must be able to hold lock to safely update.
func (*Mempool) Reap ¶ added in v0.7.0
Reap returns a list of transactions currently in the mempool. If maxTxs is -1, there is no cap on the number of returned transactions.
func (*Mempool) TxsAvailable ¶
TxsAvailable returns a channel which fires once for every height, and only when transactions are available in the mempool. NOTE: the returned channel may be nil if EnableTxsAvailable was not called.
func (*Mempool) TxsFrontWait ¶ added in v0.7.0
TxsFrontWait returns the first transaction in the ordered list for peer goroutines to call .NextWait() on. It blocks until the mempool is not empty (ie. until the internal `mem.txs` has at least one element)
type MempoolMessage ¶
type MempoolMessage interface{}
MempoolMessage is a message sent or received by the MempoolReactor.
func DecodeMessage ¶ added in v0.7.0
func DecodeMessage(bz []byte) (msgType byte, msg MempoolMessage, err error)
DecodeMessage decodes a byte-array into a MempoolMessage.
type MempoolReactor ¶
type MempoolReactor struct { p2p.BaseReactor Mempool *Mempool // contains filtered or unexported fields }
MempoolReactor handles mempool tx broadcasting amongst peers.
func NewMempoolReactor ¶
func NewMempoolReactor(config *cfg.MempoolConfig, mempool *Mempool) *MempoolReactor
NewMempoolReactor returns a new MempoolReactor with the given config and mempool.
func (*MempoolReactor) AddPeer ¶
func (memR *MempoolReactor) AddPeer(peer *p2p.Peer)
AddPeer implements Reactor. It starts a broadcast routine ensuring all txs are forwarded to the given peer.
func (*MempoolReactor) BroadcastTx ¶ added in v0.7.0
BroadcastTx is an alias for Mempool.CheckTx. Broadcasting itself happens in peer routines.
func (*MempoolReactor) GetChannels ¶
func (memR *MempoolReactor) GetChannels() []*p2p.ChannelDescriptor
GetChannels implements Reactor. It returns the list of channels for this reactor.
func (*MempoolReactor) Receive ¶
func (memR *MempoolReactor) Receive(chID byte, src *p2p.Peer, msgBytes []byte)
Receive implements Reactor. It adds any received transactions to the mempool.
func (*MempoolReactor) RemovePeer ¶
func (memR *MempoolReactor) RemovePeer(peer *p2p.Peer, reason interface{})
RemovePeer implements Reactor.
func (*MempoolReactor) SetEventSwitch ¶ added in v0.7.0
func (memR *MempoolReactor) SetEventSwitch(evsw types.EventSwitch)
SetEventSwitch implements events.Eventable.