added new POST route

This commit is contained in:
Mario Colque 2014-05-20 11:10:23 -03:00
parent 1c3dc7fd58
commit 6af4b2620b
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ module.exports = function(app) {
app.get(apiPrefix + '/addr/:addr', addresses.show);
app.get(apiPrefix + '/addr/:addr/utxo', addresses.utxo);
app.get(apiPrefix + '/addrs/:addrs/utxo', addresses.multiutxo);
app.post(apiPrefix + '/addrs/utxo', addresses.multiutxo);
// Address property routes
app.get(apiPrefix + '/addr/:addr/balance', addresses.balance);