Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/utils/flashbots.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl FlashbotsConfig {
}

/// A basic provider for common Flashbots Relay endpoints.
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Flashbots {
/// The base URL for the Flashbots API.
pub relay_url: url::Url,
Expand Down
3 changes: 1 addition & 2 deletions src/utils/tracing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ use tracing_subscriber::{filter::EnvFilter, layer::SubscriberExt, util::Subscrib
const TRACING_LOG_JSON: &str = "TRACING_LOG_JSON";

/// Install a format layer based on the `TRACING_LOG_JSON` environment
/// variable, and then install the registr
///
/// variable, and then install the registry.
macro_rules! install_fmt {
(json @ $registry:ident, $filter:ident) => {{
let fmt = tracing_subscriber::fmt::layer().json().with_filter($filter);
Expand Down
Loading