From 83ad51eb9275ad39a313eaf946641d1831dfa7ec Mon Sep 17 00:00:00 2001 From: nazeh Date: Thu, 3 Oct 2024 16:46:29 +0300 Subject: [PATCH] fix(homeserver): set the well-known keypair at Config::testnet --- pubky-homeserver/src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/pubky-homeserver/src/config.rs b/pubky-homeserver/src/config.rs index 05bab18..2b250e2 100644 --- a/pubky-homeserver/src/config.rs +++ b/pubky-homeserver/src/config.rs @@ -139,6 +139,7 @@ impl Config { port: 15411, dht_request_timeout: None, db_map_size: DEFAULT_MAP_SIZE, + keypair: Keypair::from_secret_key(&[0; 32]), ..Self::test(&testnet) } }