Skip to content

Commit

Permalink
feat(homeserver): log testnet bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuhvi committed Aug 21, 2024
1 parent 6ed8af7 commit ec4ef0d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pubky-homeserver/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
use anyhow::{anyhow, Result};
use pkarr::Keypair;
use tracing::info;
// use serde::{Deserialize, Serialize};
use std::{fmt::Debug, path::PathBuf, time::Duration};

Expand Down Expand Up @@ -41,6 +42,7 @@ impl Config {
/// Testnet configurations
pub fn testnet() -> Self {
let testnet = pkarr::mainline::Testnet::new(10);
info!(?testnet.bootstrap, "Testnet Config");

let bootstrap = Some(testnet.bootstrap.to_owned());
let storage = Some(
Expand Down

0 comments on commit ec4ef0d

Please sign in to comment.