Radish alpha
h
rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
Radicle Heartwood Protocol & Stack
Radicle
Git
radicle/bootstrap: Add rosa.radicle.xyz
Merged lorenz opened 10 months ago

This is stacked on heartwood/patches/e01a58a041f979621a718f31117ec393ab8f30e3.

I realized that rosa.radicle.xyz is not even listed as bootstrap node.

1 file changed +10 -4 a354686b 1df8cf10
modified crates/radicle/src/node/config.rs
@@ -58,10 +58,16 @@ impl Network {
    /// Bootstrap nodes for this network.
    pub fn bootstrap(&self) -> Vec<(Alias, ProtocolVersion, ConnectAddress)> {
        match self {
-
            Self::Main => [(
-
                "iris.radicle.xyz",
-
                seeds::RADICLE_NODE_BOOTSTRAP_IRIS.clone(),
-
            )]
+
            Self::Main => [
+
                (
+
                    "iris.radicle.xyz",
+
                    seeds::RADICLE_NODE_BOOTSTRAP_IRIS.clone(),
+
                ),
+
                (
+
                    "rosa.radicle.xyz",
+
                    seeds::RADICLE_NODE_BOOTSTRAP_ROSA.clone(),
+
                ),
+
            ]
            .into_iter()
            .map(|(a, s)| (Alias::new(a), 1, s))
            .collect(),