Browse Source

add getXpubRescanStatus() method to api wrapper

use-env-var-docker
kenshin-samourai 4 years ago
parent
commit
515eca1652
  1. 8
      static/admin/lib/api-wrapper.js

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

@ -110,6 +110,14 @@ const lib_api = {
)
},
/**
* Gets the status of a xpub rescan
*/
getXpubRescanStatus: function(xpub) {
let uri = this.baseUri + '/xpub/' + xpub + '/import/status'
return this.sendGetUriEncoded(uri, {})
},
/**
* Notifies the server of the new HD account for tracking.
*/

Loading…
Cancel
Save