diff --git a/src/censorship/relay.rs b/src/censorship/relay.rs index eca8246..6cd6821 100644 --- a/src/censorship/relay.rs +++ b/src/censorship/relay.rs @@ -32,7 +32,6 @@ pub enum RelayId { Flashbots, BlxrMaxProfit, BlxrRegulated, - Blocknative, Eden, Aestus, Manifold, @@ -46,7 +45,6 @@ impl fmt::Display for RelayId { RelayId::Flashbots => write!(f, "flashbots"), RelayId::BlxrMaxProfit => write!(f, "blxr-max-profit"), RelayId::BlxrRegulated => write!(f, "blxr-regulated"), - RelayId::Blocknative => write!(f, "blocknative"), RelayId::Eden => write!(f, "eden"), RelayId::Aestus => write!(f, "aestus"), RelayId::Manifold => write!(f, "manifold"), @@ -66,9 +64,6 @@ impl From for Url { RelayId::BlxrRegulated => { Url::parse("https://bloxroute.regulated.blxrbdn.com").unwrap() } - RelayId::Blocknative => { - Url::parse("https://builder-relay-mainnet.blocknative.com").unwrap() - } RelayId::Eden => Url::parse("https://relay.edennetwork.io").unwrap(), RelayId::Aestus => Url::parse("https://mainnet.aestus.live").unwrap(), RelayId::Manifold => Url::parse("https://mainnet-relay.securerpc.com").unwrap(),