Skip to content

Commit

Permalink
Merge pull request #58 from mattyg/feat/disable-dpki-2
Browse files Browse the repository at this point in the history
feat: disable dpki until it becomes a stable feature of holochain
  • Loading branch information
guillemcordoba authored Nov 18, 2024
2 parents d7f09e4 + 87efa88 commit 7abd43a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/holochain_runtime/src/launch/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use holochain::conductor::{
config::{AdminInterfaceConfig, ConductorConfig, KeystoreConfig},
interface::InterfaceDriver,
};
use holochain_conductor_api::conductor::DpkiConfig;
use holochain_keystore::paths::KeystorePath;
use holochain_types::websocket::AllowedOrigins;
use kitsune_p2p_types::config::{
Expand All @@ -27,7 +28,8 @@ pub fn conductor_config(
lair_root: Some(lair_root),
};
config.device_seed_lair_tag = Some(DEVICE_SEED_LAIR_KEYSTORE_TAG.into());

config.dpki = DpkiConfig::disabled();

let mut network_config = KitsuneP2pConfig::default();

let mut tuning_params = KitsuneP2pTuningParams::default();
Expand Down

0 comments on commit 7abd43a

Please sign in to comment.