fixed script to update Claim amount

This commit is contained in:
bill bittner 2017-08-15 18:24:15 -07:00
commit bd7c6ed16a
3 changed files with 53 additions and 0 deletions
helpers

View file

@ -79,6 +79,7 @@ module.exports = {
},
resolveUri (uri) {
logger.debug(`lbryApi >> Resolving URI for "${uri}"`);
// console.log('resolving uri', uri);
return new Promise((resolve, reject) => {
axios
.post('http://localhost:5279/lbryapi', {
@ -93,6 +94,7 @@ module.exports = {
}
})
.catch(error => {
console.log('error with resolve', error);
reject(error);
});
});