diff --git a/ts/src/local/scenario.ts b/ts/src/local/scenario.ts index 8ed3a0ed..c1bfada3 100644 --- a/ts/src/local/scenario.ts +++ b/ts/src/local/scenario.ts @@ -70,7 +70,7 @@ export class Scenario { const conductor = await createConductor(this.signalingServerUrl, { timeout: this.timeout, bootstrapServerUrl: this.bootstrapServerUrl, - noDpki + noDpki, }); this.conductors.push(conductor); return conductor; diff --git a/ts/src/trycp/conductor/conductor.ts b/ts/src/trycp/conductor/conductor.ts index 13ca6220..130de41a 100644 --- a/ts/src/trycp/conductor/conductor.ts +++ b/ts/src/trycp/conductor/conductor.ts @@ -94,7 +94,7 @@ const HOLO_SIGNALING_SERVER = new URL("wss://sbd-0.main.infra.holo.host"); const HOLO_BOOTSTRAP_SERVEr = new URL("https://devnet-bootstrap.holo.host"); const BOOTSTRAP_SERVER_PLACEHOLDER = ""; const SIGNALING_SERVER_PLACEHOLDER = ""; -const DPKI_CONFIG_DEFAULT = "~" +const DPKI_CONFIG_DEFAULT = "~"; /** * The default partial config for a TryCP conductor. @@ -197,7 +197,7 @@ export class TryCpConductor implements IConductor { * @param partialConfig - The configuration to add to the default configuration. * @returns An empty success response. */ - async configure(partialConfig?: string, noDpki: boolean = false) { + async configure(partialConfig?: string, noDpki = false) { if (!partialConfig) { partialConfig = DEFAULT_PARTIAL_PLAYER_CONFIG.replace( BOOTSTRAP_SERVER_PLACEHOLDER, @@ -212,14 +212,15 @@ export class TryCpConductor implements IConductor { ` dna_path: None device_seed_lair_tag: "disabled" - no_dpki: true`) + no_dpki: true` + ); } } const response = await this.tryCpClient.call({ type: "configure_player", id: this.id, - partial_config: partialConfig + partial_config: partialConfig, }); assert(response === TRYCP_SUCCESS_RESPONSE); return response;