tendermint/peer/README.md

85 lines
1.3 KiB
Markdown
Raw Normal View History

2014-06-24 23:49:06 -07:00
## Channel ""
2014-06-24 23:58:38 -07:00
<table>
<tr>
<th>Filter</th>
<td>None</td>
</tr>
<tr>
<th>Messages</th>
<td>
<ul>
<li>RefreshFilterMsg</li>
<li>PeerExchangeMsg</li>
</ul>
</td>
</tr>
</table>
2014-06-24 23:49:06 -07:00
## Channel "block"
2014-06-24 23:58:38 -07:00
<table>
<tr>
<th>Filter</th>
<td>Custom</td>
</tr>
<tr>
<th>Messages</th>
<td>
<ul>
<li>RequestMsg</li>
<li>BlockMsg</li>
<li>HeaderMsg</li>
</ul>
</td>
</tr>
</table>
2014-06-24 23:49:06 -07:00
## Channel "mempool"
2014-06-24 23:58:38 -07:00
<table>
<tr>
<th>Filter</th>
<td>
Bloom filter (n:10k, p:0.02 -> k:6, m:10KB)<br/>
Refreshes every new block
</td>
</tr>
<tr>
<th>Messages</th>
<td>
<ul>
<li>MempoolTxMsg</li>
</ul>
</td>
</tr>
</table>
## Channel "consensus"
<table>
<tr>
<th>Filter</th>
<td>
Bitarray filter<br/>
Refreshes every new consensus round
</td>
</tr>
<tr>
<th>Messages</th>
<td>
<ul>
<li>ProposalMsg</li>
<li>VoteMsg</li>
<li>NewBlockMsg</li>
</ul>
</td>
</tr>
</table>
2014-06-24 23:49:06 -07:00