|
|
@ -514,6 +514,18 @@ ExpressApp.prototype.start = function(opts, cb) { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
router.get('/v1/txnotes/:txid', function(req, res) { |
|
|
|
getServerWithAuth(req, res, function(server) { |
|
|
|
var opts = { |
|
|
|
txid: req.params['txid'], |
|
|
|
}; |
|
|
|
server.getTxNote(opts, function(err, note) { |
|
|
|
if (err) return returnError(err, res, req); |
|
|
|
res.json(note); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
router.put('/v1/txnotes/:txid/', function(req, res) { |
|
|
|
req.body.txid = req.params['txid']; |
|
|
|
getServerWithAuth(req, res, function(server) { |
|
|
|