We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73c9ed1 commit 88b6287Copy full SHA for 88b6287
lightning-background-processor/src/lib.rs
@@ -233,7 +233,8 @@ impl BackgroundProcessor {
233
// We wait up to 100ms, but track how long it takes to detect being put to sleep,
234
// see `await_start`'s use below.
235
let await_start = Instant::now();
236
- let updates_available = channel_manager.await_persistable_update_timeout(Duration::from_millis(100));
+ let updates_available =
237
+ channel_manager.await_persistable_update_timeout(Duration::from_millis(100));
238
let await_time = await_start.elapsed();
239
240
if updates_available {
0 commit comments