Skip to content

Commit 88b6287

Browse files
committed
Undo unrelated change that should eventually be eliminated in squashing.
1 parent 73c9ed1 commit 88b6287

File tree

1 file changed

+2
-1
lines changed
  • lightning-background-processor/src

1 file changed

+2
-1
lines changed

lightning-background-processor/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,8 @@ impl BackgroundProcessor {
233233
// We wait up to 100ms, but track how long it takes to detect being put to sleep,
234234
// see `await_start`'s use below.
235235
let await_start = Instant::now();
236-
let updates_available = channel_manager.await_persistable_update_timeout(Duration::from_millis(100));
236+
let updates_available =
237+
channel_manager.await_persistable_update_timeout(Duration::from_millis(100));
237238
let await_time = await_start.elapsed();
238239

239240
if updates_available {

0 commit comments

Comments
 (0)