Browse Source

add wrapper function for /txs endpoint

umbrel
kenshin-samourai 4 years ago
parent
commit
cacde36614
  1. 8
      static/admin/lib/api-wrapper.js

8
static/admin/lib/api-wrapper.js

@ -156,6 +156,14 @@ const lib_api = {
) )
}, },
/**
* Transactions
*/
getTransactions: function(arguments) {
let uri = this.baseUri + '/txs'
return this.sendGetUriEncoded(uri, arguments)
},
/** /**
* Rescans a range of blocks * Rescans a range of blocks
*/ */

Loading…
Cancel
Save