We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 162e04b commit 864b42dCopy full SHA for 864b42d
src/lib.rs
@@ -20,8 +20,8 @@ pub struct Endpoint<'e>(Cow<'e, str>);
20
impl<'e> Endpoint<'e> {
21
/// The original `block-dn` server hosted at `block-dn.org`.
22
pub const BLOCK_DN_ORG: Self = Self(Cow::Borrowed("https://block-dn.org"));
23
- /// Taproot-specific filters hosted by `2140.dev`.
24
- pub const TAPROOT_DN: Self = Self(Cow::Borrowed("https://taprootdn.xyz"));
+ // Taproot-specific filters hosted by `2140.dev`.
+ // pub const TAPROOT_DN: Self = Self(Cow::Borrowed("https://taprootdn.xyz"));
25
/// Local host at port 8080.
26
pub const LOCAL_HOST: Self = Self(Cow::Borrowed("https://127.0.0.1:8080"));
27
0 commit comments