You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**What it's used for:** if you have 1 or more public channels, you may need to announce your node and its channels occasionally. LDK will automatically announce channels when they are created, but there are no guarantees you have connected peers at that time or that your peers will propagate such announcements. The broader node-announcement message is not automatically broadcast.
484
+
485
+
<CodeSwitcher :languages="{rust:'Rust'}">
486
+
<template v-slot:rust>
487
+
488
+
```rust
489
+
let mut interval = tokio::time::interval(Duration::from_secs(60));
0 commit comments