diff --git a/pubky-testnet/src/lib.rs b/pubky-testnet/src/lib.rs index 7a41b5e..3844241 100644 --- a/pubky-testnet/src/lib.rs +++ b/pubky-testnet/src/lib.rs @@ -23,7 +23,7 @@ pub struct Testnet { impl Testnet { /// Run a new testnet. pub async fn run() -> Result { - let dht = mainline::Testnet::new(10)?; + let dht = mainline::Testnet::new(3)?; let mut testnet = Self { dht, @@ -42,7 +42,7 @@ impl Testnet { /// 2. A Homeserver with address is hardcoded to `8pinxxgqs41n4aididenw5apqp1urfmzdztr8jt4abrkdn435ewo` /// 4. An HTTP relay running on port [15412](pubky_common::constants::testnet_ports::HTTP_RELAY) pub async fn run_with_hardcoded_configurations() -> Result { - let dht = mainline::Testnet::new(10)?; + let dht = mainline::Testnet::new(3)?; dht.leak();