mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-15 19:02:42 +00:00
Squashed reset to unstable
This commit is contained in:
committed by
Daniel Knopik
parent
b71b5f2231
commit
f61f0b654c
@@ -3,22 +3,21 @@
|
||||
//! This service allows task execution on the beacon node for various functionality.
|
||||
|
||||
use beacon_chain::{BeaconChain, BeaconChainTypes};
|
||||
use slog::{info, warn};
|
||||
use slot_clock::SlotClock;
|
||||
use std::sync::Arc;
|
||||
use tokio::time::sleep;
|
||||
use tracing::{info, warn};
|
||||
|
||||
/// Spawns a timer service which periodically executes tasks for the beacon chain
|
||||
pub fn spawn_timer<T: BeaconChainTypes>(
|
||||
executor: task_executor::TaskExecutor,
|
||||
beacon_chain: Arc<BeaconChain<T>>,
|
||||
) -> Result<(), &'static str> {
|
||||
let log = executor.log().clone();
|
||||
let timer_future = async move {
|
||||
loop {
|
||||
let Some(duration_to_next_slot) = beacon_chain.slot_clock.duration_to_next_slot()
|
||||
else {
|
||||
warn!(log, "Unable to determine duration to next slot");
|
||||
warn!("Unable to determine duration to next slot");
|
||||
return;
|
||||
};
|
||||
|
||||
@@ -28,7 +27,7 @@ pub fn spawn_timer<T: BeaconChainTypes>(
|
||||
};
|
||||
|
||||
executor.spawn(timer_future, "timer");
|
||||
info!(executor.log(), "Timer service started");
|
||||
info!("Timer service started");
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user