github.com/badrootd/nibiru-cometbft@v0.37.5-0.20240307173500-2a75559eee9b/.changelog/v0.37.4/features/1643-nop-mempool.md (about)

     1  - `[mempool]` Add `nop` mempool ([\#1643](https://github.com/cometbft/cometbft/pull/1643))
     2  
     3    If you want to use it, change mempool's `type` to `nop`:
     4  
     5    ```toml
     6    [mempool]
     7  
     8    # The type of mempool for this node to use.
     9    #
    10    # Possible types:
    11    # - "flood" : concurrent linked list mempool with flooding gossip protocol
    12    # (default)
    13    # - "nop"   : nop-mempool (short for no operation; the ABCI app is responsible
    14    # for storing, disseminating and proposing txs). "create_empty_blocks=false"
    15    # is not supported.
    16    type = "nop"
    17    ```