diff --git a/lib/expressapp.js b/lib/expressapp.js index 5c54efa..1af6364 100644 --- a/lib/expressapp.js +++ b/lib/expressapp.js @@ -173,7 +173,7 @@ ExpressApp.prototype.start = function(opts, cb) { router.get('/v2/wallets/', function(req, res) { getServerWithAuth(req, res, function(server) { - server.getStatus({}, function(err, status) { + server.getStatus(req.body, function(err, status) { if (err) return returnError(err, res, req); res.json(status); });