Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 9b4c510

Browse files
author
Hiroto Shioi
committed
Fix server.js
1 parent fe963f8 commit 9b4c510

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/NodeIPCClient/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// How to run the script:
22
// Node JS version: v11.10.1
33
// Have everything built beforehand
4-
// On console, run: "node app/NodeIPCServer/server.js"
4+
// On console, run: "node app/NodeIPCClient/server.js"
55

66
// This process implicitly sets environment varibale "NODE_CHANNEL_FD" with a fd it currently uses
77
// Hakell node will then lookup that fd, and use it to communicate with this script.
88
const child_process = require("child_process");
99
const fs = require('fs');
1010

1111
// Filepath to resources
12-
const parentPath = "./app/NodeIPCServer";
12+
const parentPath = "./app/NodeIPCClient";
1313
const testDir = `${parentPath}/test-state`;
1414
const logPath = `${testDir}/cardano-node.log`;
1515

0 commit comments

Comments
 (0)