Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Aug 17, 2023
1 parent 335d3ff commit a2e8342
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions javascript/packages/orchestrator/src/configGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export async function generateNetworkSpec(
defaultImage: config.relaychain.default_image || DEFAULT_IMAGE,
defaultCommand: config.relaychain.default_command || DEFAULT_COMMAND,
defaultArgs: config.relaychain.default_args || [],
defaultkeystoreKeyTypes:
defaultKeystoreKeyTypes:
config.relaychain.default_keystore_key_types ||
DEFAULT_KEYSTORE_KEY_TYPES,
randomNominatorsCount: config.relaychain?.random_nominators_count || 0,
Expand Down Expand Up @@ -637,7 +637,7 @@ async function getNodeFromConfig(
args: uniqueArgs,
keystoreKeyTypes:
node.keystore_key_types ||
networkSpec.relaychain.defaultkeystoreKeyTypes ||
networkSpec.relaychain.defaultKeystoreKeyTypes ||
DEFAULT_KEYSTORE_KEY_TYPES,
env,
bootnodes: relayChainBootnodes,
Expand Down
2 changes: 1 addition & 1 deletion javascript/packages/orchestrator/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export interface ComputedNetwork {
overrides: Override[];
genesis?: JSON | ObjectJSON;
defaultResources?: Resources;
defaultkeystoreKeyTypes?: string[];
defaultKeystoreKeyTypes?: string[];
};
parachains: Parachain[];
types: any;
Expand Down

0 comments on commit a2e8342

Please sign in to comment.