Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup: p2p readme
Browse files Browse the repository at this point in the history
bryanchriswhite committed Apr 28, 2023
1 parent 5ec81e0 commit 971c278
Showing 2 changed files with 6 additions and 23 deletions.
14 changes: 6 additions & 8 deletions p2p/README.md
Original file line number Diff line number Diff line change
@@ -60,30 +60,28 @@ The `Network Module` is where [RainTree](https://github.com/pokt-network/pocket/
```bash
p2p
├── README.md # Self link to this README
├── transport.go # Varying implementations of the `Transport` (e.g. TCP, Passthrough) for network communication
├── module.go # The implementation of the P2P Interface
├── raintree
│   ├── addrbook_utils.go # AddrBook utilities
│   ├── peers_manager.go # peersManager implementation
│   ├── peers_manager_test.go # peersManager unit tests
│   ├── router_test.go # network unit tests
│   ├── router.go # Implementation of the Network interface using RainTree's specification
│   ├── router.go # Implementation of the Router interface using RainTree's specification
│   ├── utils.go
│   └── types
│   └── proto
│   └── raintree.proto
├── raintree_integration_test.go # RainTree unit tests
├── raintree_integration_utils_test.go # Test suite for RainTree
├── background # This can eventually be deprecated once raintree is verified.
│   └── router.go # Implementation of the Network interface using Golang's std networking lib
│   └── router.go # Implementation of the Router interface using libp2p gossipsub and kademalia DHT.
├── telemetry
│   ├── metrics.go
├── types
│   ├── addr_book.go # addrBook definition
│   ├── addr_book_map.go # addrBookMap definition
│   ├── addr_list.go # addrList definition
│   ├── network.go # Network Interface definition
│   ├── network_peer.go # networkPeer definition
│   ├── peerstore.go # Peerstore definition
│   ├── peer.go # Peer interface and PeerList definition
│   ├── router.go # Router Interface definition
│   ├── network_peer.go # The default Peer implementation
│   ├── proto # Proto3 messages for generated types
│   ├── target.go # target definition
└── utils.go
15 changes: 0 additions & 15 deletions p2p/types/transport.go

This file was deleted.

0 comments on commit 971c278

Please sign in to comment.