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.

14 lines
481 B

  1. # Mempool Reactor
  2. ## Channels
  3. See [this issue](https://github.com/tendermint/tendermint/issues/1503)
  4. Mempool maintains a cache of the last 10000 transactions to prevent
  5. replaying old transactions (plus transactions coming from other
  6. validators, who are continually exchanging transactions). Read [Replay
  7. Protection](../../../../app-development.md#replay-protection)
  8. for details.
  9. Sending incorrectly encoded data or data exceeding `maxMsgSize` will result
  10. in stopping the peer.