Skip to content

Commit

Permalink
fix, set default node balance if is not provided (#1159)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola authored Jun 30, 2023
1 parent d84a7c8 commit 579bd3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/packages/orchestrator/src/configGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ async function getNodeFromConfig(
chain: networkSpec.relaychain.chain,
validator: isValidator,
invulnerable: node.invulnerable,
balance: node.balance,
balance: node.balance || DEFAULT_BALANCE,
args: uniqueArgs,
env,
bootnodes: relayChainBootnodes,
Expand Down

0 comments on commit 579bd3f

Please sign in to comment.