From 6317c65f2c39a6be700ccb73874ba7eb58a97641 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Tue, 25 Aug 2015 17:11:36 -0300 Subject: [PATCH] fix api/v2/status --- lib/expressapp.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/expressapp.js b/lib/expressapp.js index 1af6364..5e3671c 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(req.body, function(err, status) { + server.getStatus(req.query, function(err, status) { if (err) return returnError(err, res, req); res.json(status); }); diff --git a/package.json b/package.json index 0d68ff7..514906d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bitcore-wallet-service", "description": "A service for Mutisig HD Bitcoin Wallets", "author": "BitPay Inc", - "version": "0.1.8", + "version": "0.1.9", "keywords": [ "bitcoin", "copay",