express endpoint

This commit is contained in:
Ivan Socolsky 2015-08-13 16:08:27 -03:00
parent a1835c76a2
commit 4502dd284a
1 changed files with 10 additions and 0 deletions

View File

@ -288,6 +288,16 @@ ExpressApp.prototype.start = function(opts, cb) {
});
});
router.post('/v1/broadcast_raw/', function(req, res) {
getServerWithAuth(req, res, function(server) {
server.broadcastRawTx(req.body, function(err, txp) {
if (err) return returnError(err, res, req);
res.json(txp);
res.end();
});
});
});
router.post('/v1/txproposals/:id/signatures/', function(req, res) {
getServerWithAuth(req, res, function(server) {
req.body.txProposalId = req.params['id'];