diff options
Diffstat (limited to 'api/routes/getZChain/index.js')
-rw-r--r-- | api/routes/getZChain/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/routes/getZChain/index.js b/api/routes/getZChain/index.js index 6aaa5d9..d30bb0a 100644 --- a/api/routes/getZChain/index.js +++ b/api/routes/getZChain/index.js @@ -8,7 +8,7 @@ const { spawn } = require('child_process'); * */ module.exports = (req, res) => { - const command = spawn("ak-get-chain-minified"); + const command = spawn("ak-enter"); response_string = ""; command.stdout.on("data", data => { response_string = response_string + data; |