We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a611c62 commit 4868c33Copy full SHA for 4868c33
crates/core/src/node/p2p_impl.rs
@@ -292,9 +292,10 @@ impl NodeP2P {
292
.boxed();
293
294
// Spawn the periodic batch announcement task for proximity cache
295
- proximity_cache
296
- .clone()
297
- .spawn_periodic_batch_announcements(notification_tx_clone.clone(), Arc::downgrade(&op_manager));
+ proximity_cache.clone().spawn_periodic_batch_announcements(
+ notification_tx_clone.clone(),
+ Arc::downgrade(&op_manager),
298
+ );
299
300
// Spawn the startup batch flusher to send batched announcements after grace period
301
proximity_cache
0 commit comments