diff --git a/lib/expressapp.js b/lib/expressapp.js index 34da5b1..ca0e8fe 100644 --- a/lib/expressapp.js +++ b/lib/expressapp.js @@ -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) { diff --git a/package.json b/package.json index 1cce341..91d69fc 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": "1.8.0", + "version": "1.8.1", "keywords": [ "bitcoin", "copay",