Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to not use --parachain-id flag #160

Closed
wants to merge 20 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated test
  • Loading branch information
jimmychu0807 committed Dec 13, 2021
commit 29919c3e86f1c374a1fe802ccda751099bff6801
5 changes: 4 additions & 1 deletion test/test-utils/para-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,10 @@ export async function startParachainNodes(options: ParachainOptions): Promise<{
process.once("exit", onProcessExit);
process.once("SIGINT", onProcessInterrupt);

await run(path.join(__dirname, "../"), launchConfig);
await run(path.join(__dirname, "../"), launchConfig, {
verbose: 0,
out: process.cwd(),
});

return {
relayPorts: new Array(numberOfParachains + 1).fill(0).map((_, i) => {
Expand Down