tendermint/peer
Jae Kwon 201e283fb4 Merge branch 'master' of https://github.com/tendermint/tendermint 2014-06-25 21:37:39 -07:00
..
README.md Update README.md 2014-06-25 11:58:34 -07:00
addrbook.go . 2014-06-25 21:37:20 -07:00
client.go . 2014-06-25 21:37:20 -07:00
connection.go . 2014-06-25 21:37:20 -07:00
connection_test.go . 2014-06-25 21:37:20 -07:00
filter.go . 2014-06-25 21:37:20 -07:00
knownaddress.go working draft of peer 2014-06-18 20:48:32 -07:00
listener.go . 2014-06-25 21:37:20 -07:00
log.go working draft of peer 2014-06-18 20:48:32 -07:00
msg.go . 2014-06-25 21:37:20 -07:00
netaddress.go working draft of peer 2014-06-18 20:48:32 -07:00
peer.go . 2014-06-25 21:37:20 -07:00
server.go . 2014-06-25 21:37:20 -07:00
upnp.go . 2014-06-25 21:37:20 -07:00
util.go stripped addrmanager from btcd 2014-06-07 19:09:47 -07:00

README.md

Channels

Each peer connection is multiplexed into channels. Each channel can optionally have an associated filter which determines whether the peer already knows of the message. The system is designed to be easily extensible for various applications.


Default channel

The default channel is used to communicate state changes, pings, peer exchange, and other automatic internal messages that all P2P protocols would want implemented.

Channel ""
Filter None
Messages in this channel is not filtered.
Messages
  • PingMsg/PongMsg
  • PeerExchangeMsg
  • RefreshFilterMsg

Block channel

The block channel is used to propagate block or header information to new peers or peers catching up with the blockchain.

Channel "block"
Filter Custom
Nodes should only advertise having a header or block at height 'h' if it also has all the headers or blocks less than 'h'. Thus this filter need only keep track of two integers -- one for the most recent header height 'h_h' and one for the most recent block height 'h_b', where 'h_b' <= 'h_h'.
Messages
  • RequestMsg
  • BlockMsg
  • HeaderMsg

Mempool channel

The mempool channel is used for broadcasting new transactions that haven't yet entered the blockchain. It uses a lossy bloom filter on either end, but with sufficient fanout and filter nonce updates every new block, all transactions will eventually reach every node.

Channel "mempool"
Filter Bloom filter (n:10k, p:0.02 -> k:6, m:10KB)
Each peer's filter has a random nonce that scrambles the message hashes
The filter & nonce refreshes every new block
Messages
  • MempoolTxMsg

Consensus channel

The consensus channel broadcasts all information used in the rounds of the Tendermint consensus mechanism.

Channel "consensus"
Filter Bitarray filter
Each validator has a predetermined index in teh bitarray
Refreshes every new consensus round
Messages
  • ProposalMsg
  • VoteMsg
  • NewBlockMsg