We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1770e64 commit 9ff6fe9Copy full SHA for 9ff6fe9
lightning-graph-sync/src/processing.rs
@@ -164,13 +164,12 @@ pub(crate) fn update_network_graph_from_byte_stream<R: Read>(
164
action: ErrorAction::IgnoreError,
165
})?;
166
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
- })?;
+ let directional_info = channel
+ .get_directional_info(channel_flags)
+ .ok_or(LightningError {
+ err: "Couldn't find previous directional data for update".to_owned(),
+ action: ErrorAction::IgnoreError,
+ })?;
174
175
let htlc_maximum_msat =
176
if let Some(htlc_maximum_msat) = directional_info.htlc_maximum_msat {
0 commit comments