@@ -34,9 +34,9 @@ We will walk through this process as depicted here:
34
34
35
35
## Block Source
36
36
37
- Initially, our node doesn't have any channels and so has no data to monitor for
38
- on-chain. When a channel is opened with a peer, the ` ChannelManager ` creates a
39
- ` ChannelMonitor ` and passes it to the ` ChainMonitor ` to watch.
37
+ Initially, our node doesn't have any channels and hence has no data to monitor
38
+ for on-chain. When a channel is opened with a peer, the ` ChannelManager ` creates
39
+ a ` ChannelMonitor ` and passes it to the ` ChainMonitor ` to watch.
40
40
41
41
At this point, LDK needs to be fed chain data of interest so that it can respond
42
42
accordingly. It supports receiving either full blocks or pre-filtered blocks.
@@ -122,8 +122,8 @@ later. For now, let's look at the more interesting case of pre-filtered blocks.
122
122
123
123
For environments that are resource constrained, receiving and processing all
124
124
transaction data may not be feasible. LDK handles this case by signaling back
125
- with which transactions and outputs it is interested in. This information can
126
- then be used to filter blocks prior to sending them to your node.
125
+ which transactions and outputs it is interested in. This information can then be
126
+ used to filter blocks prior to sending them to your node.
127
127
128
128
For example, if your block source is an Electrum client, you can pass along this
129
129
information to it. Or if you are making use of a BIP 157 client, you can check
0 commit comments