fix arg in express

This commit is contained in:
Ivan Socolsky 2015-08-25 16:29:40 -03:00
parent 286cf936f6
commit 1dfc599ac4
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});