Files
tendermint/p2p
Anton Kaliaev 085fd66f33 p2p: do not format raw msg bytes
While debugging the mempool issue (#5796), I've noticed we're spending
quite a bit of time encoding blobs of data, which never get printed! The
reason is filtering occurs on the level below, so Go runtime rightfully
evaluates function arguments.

I think it's okay to not format raw bytes.
2020-12-17 15:59:18 +04:00
..
2020-12-17 15:59:18 +04:00
2020-10-08 19:12:12 +02:00
2020-10-13 10:22:53 +02:00
2019-04-03 11:22:52 +02:00
2020-02-07 12:53:28 +01:00
2020-12-17 15:59:18 +04:00

p2p

The p2p package provides an abstraction around peer-to-peer communication.

Docs:

  • Connection for details on how connections and multiplexing work
  • Peer for details on peer ID, handshakes, and peer exchange
  • Node for details about different types of nodes and how they should work
  • Pex for details on peer discovery and exchange
  • Config for details on some config option