Skip to content

Commit 65c373d

Browse files
committed
f - Clean up language and paragraph ordering
1 parent c5f363a commit 65c373d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/blockdata.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ rest!
113113
So what happens? The `ChannelManager` examines the blocks transactions and
114114
updates the internal channel state as needed. The `ChainMonitor` will detect
115115
any spends of the channel funding transaction or any pertinent transaction
116-
outputs of interest, tracking them as necessary.
116+
outputs, tracking them as necessary.
117117

118118
If necessary, LDK will broadcast a transaction on your behalf. More on that
119119
later. For now, let's look at the more interesting case of pre-filtered blocks.
@@ -129,8 +129,6 @@ For example, if your block source is an Electrum client, you can pass along this
129129
information to it. Or if you are making use of a BIP 157 client, you can check
130130
if a block contains relevant transactions before fetching it.
131131

132-
Either way, when a block is connected, its header must be processed by LDK.
133-
134132
So how does this work in practice? `ChainMonitor` is parameterized by an
135133
optional type that implements `chain::Filter`:
136134

@@ -179,6 +177,8 @@ When this is provided, `ChainMonitor` will call back to the filter as channels
179177
are opened and blocks connected. This gives the opportunity for the source to
180178
pre-filter blocks as desired.
181179

180+
Regardless, when a block is connected, its header must be processed by LDK.
181+
182182
## Transaction Broadcast
183183

184184
Inevitably, LDK will need to broadcast transactions on your behalf. As you

0 commit comments

Comments
 (0)