diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-02 01:50:19 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-02 01:50:19 +0200 |
commit | a506f0a48e02587f59bbd24f67812416a7a74038 (patch) | |
tree | ddda2bc69ea013fdd74ba48bd2d016350cda0bb8 /api | |
parent | 80bab8913b5ae88a6dc9a200ffb6668df5cffb97 (diff) | |
download | arching-kaos-tools-a506f0a48e02587f59bbd24f67812416a7a74038.tar.gz arching-kaos-tools-a506f0a48e02587f59bbd24f67812416a7a74038.tar.bz2 arching-kaos-tools-a506f0a48e02587f59bbd24f67812416a7a74038.zip |
Replaced obsoleted script
Diffstat (limited to 'api')
-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; |