diff options
Diffstat (limited to 'api/routes/getSLatest')
-rw-r--r-- | api/routes/getSLatest/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/routes/getSLatest/index.js b/api/routes/getSLatest/index.js index 995fe69..5a31ae7 100644 --- a/api/routes/getSLatest/index.js +++ b/api/routes/getSLatest/index.js @@ -8,7 +8,7 @@ const HomeDir = os.userInfo().homedir; * sorry I was laughing at the term.. superchain */ module.exports = (req, res) => { - const command = spawn("ak-find-latest-mined-sblock"); + const command = spawn("ak-schain-latest-cached"); response_string = ""; command.stdout.on("data", data => { response_string = response_string + data; |