We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eeb254 commit e06bfdfCopy full SHA for e06bfdf
lightning-background-processor/src/lib.rs
@@ -278,15 +278,16 @@ impl BackgroundProcessor {
278
if let Err(e) = persister.persist_graph(handler.network_graph()) {
279
log_error!(logger, "Error: Failed to persist network graph, check your disk and permissions {}", e)
280
}
281
- last_prune_call = Instant::now();
282
- have_pruned = true;
283
284
if let Some(ref scorer) = scorer {
285
log_trace!(logger, "Persisting scorer");
286
if let Err(e) = persister.persist_scorer(&scorer) {
287
log_error!(logger, "Error: Failed to persist scorer, check your disk and permissions {}", e)
288
289
+
+ last_prune_call = Instant::now();
290
+ have_pruned = true;
291
292
293
0 commit comments