You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/building-a-node-with-ldk/introduction.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,8 @@ The following tutorials will show you how to build the simplest lightning node u
19
19
Let's start by looking at the core components we'll need to make this node work for the tasks we outlined above.
20
20
21
21
1. A [`ChannelManager`](https://docs.rs/lightning/*/lightning/ln/channelmanager/struct.ChannelManager.html), to open and close channels.
22
-
2. A [`PeerManager`](https://docs.rs/lightning/*/lightning/ln/peer_handler/struct.PeerManager.html), for establishing TCP/IP connections to other nodes on the lightning network.
23
-
3. Payments & Routing, ability to create and pay invoices.
22
+
2. A networking stack (https://docs.rs/lightning-net-tokio/*/lightning_net_tokio/index.html), for establishing TCP/IP connections to other nodes on the lightning network.
23
+
3. Payments & routing, ability to create and pay invoices.
24
24
25
25
To make the above work we also need to setup a series of supporting modules, including:
0 commit comments