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",
|
"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",
|
||||||
|
|
|
@ -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"],
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue