github.com/vipernet-xyz/tm@v0.34.24/spec/p2p/messages/mempool.md (about)

     1  ---
     2  order: 4
     3  ---
     4  # Mempool
     5  
     6  ## Channel
     7  
     8  Mempool has one channel. The channel identifier is listed below.
     9  
    10  | Name           | Number |
    11  |----------------|--------|
    12  | MempoolChannel | 48     |
    13  
    14  ## Message Types
    15  
    16  There is currently only one message that Mempool broadcasts and receives over
    17  the p2p gossip network (via the reactor): `TxsMessage`
    18  
    19  ### Txs
    20  
    21  A list of transactions. These transactions have been checked against the application for validity. This does not mean that the transactions are valid, it is up to the application to check this.
    22  
    23  | Name | Type           | Description          | Field Number |
    24  |------|----------------|----------------------|--------------|
    25  | txs  | repeated bytes | List of transactions | 1            |
    26  
    27  ### Message
    28  
    29  Message is a [`oneof` protobuf type](https://developers.google.com/protocol-buffers/docs/proto#oneof). The one of consists of one message [`Txs`](#txs).
    30  
    31  | Name | Type        | Description           | Field Number |
    32  |------|-------------|-----------------------|--------------|
    33  | txs  | [Txs](#txs) | List of transactions | 1            |