From e0aff9c41bc11c4116e2700a007849ffaef3ca40 Mon Sep 17 00:00:00 2001 From: Jeffrey Czyz Date: Fri, 27 Aug 2021 15:29:38 -0500 Subject: [PATCH] f - Update BackgroundProcessor's docs on timer_tick_occurred --- lightning-background-processor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning-background-processor/src/lib.rs b/lightning-background-processor/src/lib.rs index 380158b31e5..b0578cbd087 100644 --- a/lightning-background-processor/src/lib.rs +++ b/lightning-background-processor/src/lib.rs @@ -35,7 +35,7 @@ use std::ops::Deref; /// writing it to disk/backups by invoking the callback given to it at startup. /// [`ChannelManager`] persistence should be done in the background. /// * Calling [`ChannelManager::timer_tick_occurred`] and [`PeerManager::timer_tick_occurred`] -/// every minute. +/// at the appropriate intervals. /// /// # Note ///