Skip to content

Commit 31f155f

Browse files
author
Conor Okus
committed
Switch component ordering
1 parent 43b12ca commit 31f155f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/building-a-node-with-ldk/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ The following tutorials will show you how to build the simplest lightning node u
1818

1919
Let's start by looking at the core components we'll need to make this node work for the tasks we outlined above.
2020

21-
1. 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.
22-
2. A [`ChannelManager`](https://docs.rs/lightning/*/lightning/ln/channelmanager/struct.ChannelManager.html), to open and close channels.
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.
2323
3. Payments & Routing, ability to create and pay invoices.
2424

2525
To make the above work we also need to setup a series of supporting modules, including:

0 commit comments

Comments
 (0)