aboutsummaryrefslogtreecommitdiff
path: root/api/routes/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'api/routes/index.js')
-rw-r--r--api/routes/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/routes/index.js b/api/routes/index.js
index 9a6f433..c019967 100644
--- a/api/routes/index.js
+++ b/api/routes/index.js
@@ -48,5 +48,5 @@ router.route(settings.URL_PREFIX+'/sblk').post(receiveZBlock);
// Send a zchain link to the node (refering to a valid zchain out there)
router.route(settings.URL_PREFIX+'/szch').post(receiveZChain);
-router.route('/*').get((req,res)=>{console.log(req.url);res.send({errno:"404"})});
+router.route('/*').get((req,res)=>{console.log(req.url);res.send({error:"404"})});
module.exports = router;