From 373a7b186f831b1974c6fa8319ff7c77dd27dc2f Mon Sep 17 00:00:00 2001 From: Sayantan Karmakar Date: Tue, 31 May 2022 12:55:17 +0530 Subject: [PATCH] fixed market making path bug, upgraded sdk to 0.0.3 --- ts/package.json | 2 +- ts/src/dex.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/package.json b/ts/package.json index 4b82ee0..070ff39 100644 --- a/ts/package.json +++ b/ts/package.json @@ -1,6 +1,6 @@ { "name": "@project-serum/serum-dev-tools", - "version": "0.0.2", + "version": "0.0.3", "description": "developer tooling suite for building on serum", "repository": { "type": "git", diff --git a/ts/src/dex.ts b/ts/src/dex.ts index f8bbec5..daf0faa 100644 --- a/ts/src/dex.ts +++ b/ts/src/dex.ts @@ -255,7 +255,7 @@ export class Dex { owner: FileKeypair, opts: MarketMakerOpts, ): ChildProcess { - const child = fork("./src/scripts/marketMaker", null, { + const child = fork(`${__dirname}/scripts/marketMaker`, null, { detached: true, stdio: ["pipe", 0, 0, "ipc"], });