Skip to content

Commit 9ff6fe9

Browse files
committed
Fix line breaks.
1 parent 1770e64 commit 9ff6fe9

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

lightning-graph-sync/src/processing.rs

+6-7
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,12 @@ pub(crate) fn update_network_graph_from_byte_stream<R: Read>(
164164
action: ErrorAction::IgnoreError,
165165
})?;
166166

167-
let directional_info =
168-
channel
169-
.get_directional_info(channel_flags)
170-
.ok_or(LightningError {
171-
err: "Couldn't find previous directional data for update".to_owned(),
172-
action: ErrorAction::IgnoreError,
173-
})?;
167+
let directional_info = channel
168+
.get_directional_info(channel_flags)
169+
.ok_or(LightningError {
170+
err: "Couldn't find previous directional data for update".to_owned(),
171+
action: ErrorAction::IgnoreError,
172+
})?;
174173

175174
let htlc_maximum_msat =
176175
if let Some(htlc_maximum_msat) = directional_info.htlc_maximum_msat {

0 commit comments

Comments
 (0)