fixed market making path bug, upgraded sdk to 0.0.3
This commit is contained in:
parent
b52481c67a
commit
373a7b186f
|
@ -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",
|
||||
|
|
|
@ -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"],
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue