fixed market making path bug, upgraded sdk to 0.0.3

This commit is contained in:
Sayantan Karmakar 2022-05-31 12:55:17 +05:30
parent b52481c67a
commit 373a7b186f
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@project-serum/serum-dev-tools", "name": "@project-serum/serum-dev-tools",
"version": "0.0.2", "version": "0.0.3",
"description": "developer tooling suite for building on serum", "description": "developer tooling suite for building on serum",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -255,7 +255,7 @@ export class Dex {
owner: FileKeypair, owner: FileKeypair,
opts: MarketMakerOpts, opts: MarketMakerOpts,
): ChildProcess { ): ChildProcess {
const child = fork("./src/scripts/marketMaker", null, { const child = fork(`${__dirname}/scripts/marketMaker`, null, {
detached: true, detached: true,
stdio: ["pipe", 0, 0, "ipc"], stdio: ["pipe", 0, 0, "ipc"],
}); });