diff --git a/lib/expressapp.js b/lib/expressapp.js index 9f12330..ac8fe9f 100644 --- a/lib/expressapp.js +++ b/lib/expressapp.js @@ -267,6 +267,9 @@ ExpressApp.start = function(opts) { req.body.txProposalId = req.params['id']; server.removePendingTx(req.body, function(err) { if (err) return returnError(err, res, req); + res.json({ + success: true + }); res.end(); }); });