Marko 0d68161cc8 | 3 years ago | |
---|---|---|
.. | ||
README.md | 3 years ago | |
config.md | 3 years ago |
order | parent |
---|---|
1 | [{title Mempool} {order 2}] |
The mempool is a in memory pool of potentially valid transactions, both to broadcast to other nodes, as well as to provide to the consensus reactor when it is selected as the block proposer.
There are two sides to the mempool state:
External functionality is exposed via network interfaces to potentially untrusted actors.
Internal functionality is exposed via method calls to other code compiled into the tendermint binary.
What does it provide the consensus reactor? What guarantees does it need from the ABCI app? (talk about interleaving processes in concurrency)
The implementation within this library also implements a tx cache. This is so that signatures don't have to be reverified if the tx has already been seen before. However, we only store valid txs in the cache, not invalid ones. This is because invalid txs could become good later. Txs that are included in a block aren't removed from the cache, as they still may be getting received over the p2p network. These txs are stored in the cache by their hash, to mitigate memory concerns.
Applications should implement replay protection, read Replay Protection for more information.
The mempool has various configurable paramet
Sending incorrectly encoded data or data exceeding maxMsgSize
will result
in stopping the peer.
maxMsgSize
equals MaxBatchBytes
(10MB) + 4 (proto overhead).
MaxBatchBytes
is a mempool config parameter -> defined locally. The reactor
sends transactions to the connected peers in batches. The maximum size of one
batch is MaxBatchBytes
.
The mempool will not send a tx back to any peer which it received it from.
The reactor assigns an uint16
number for each peer and maintains a map from
p2p.ID to uint16
. Each mempool transaction carries a list of all the senders
([]uint16
). The list is updated every time mempool receives a transaction it
is already seen. uint16
assumes that a node will never have over 65535 active
peers (0 is reserved for unknown source - e.g. RPC).