Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion crates/optimism/flashblocks/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use std::{
time::{Duration, Instant},
};
use tokio::pin;
use tracing::{debug, trace};
use tracing::{debug, trace, warn};

/// The `FlashBlockService` maintains an in-memory [`PendingBlock`] built out of a sequence of
/// [`FlashBlock`]s.
Expand Down Expand Up @@ -85,6 +85,8 @@ where
let _ = tx.send(block).inspect_err(|e| tracing::error!("{e}"));
}
}

warn!("Flashblock service has stopped");
}

/// Returns the cached reads at the given head hash.
Expand Down