Add libp2p readme

This commit is contained in:
Paul Hauner 2018-08-07 10:11:00 +10:00
parent 0064efc402
commit fe423c1346
2 changed files with 7 additions and 8 deletions

7
network-libp2p/README.md Normal file
View File

@ -0,0 +1,7 @@
# libp2p Network
This is a fairly scrappy implementation of libp2p floodsub for the following
reasons:
- There is not presently a gossip-sub implementation for Rust libp2p.
- The networking layer for the beacon_chain is not yet finalized.

View File

@ -1,11 +1,3 @@
/*
* This is a scrappy floodsub implementation that is intended
* to "make-do" until a p2p impl is finalized.
*
* It is not guaranteed to be working and needs to be modified
* to run in its own thread.
*/
extern crate bigint;
extern crate bytes;
extern crate futures;