Address Labels -> Claim Address

This commit is contained in:
joeuhren
2020-11-22 14:39:10 -07:00
parent a22ea7c484
commit a66f9cb7e4
9 changed files with 202 additions and 28 deletions
+3 -3
View File
@@ -117,7 +117,7 @@ module.exports = {
} else {
client.cmd([{method:'getblockhash', params: [parseInt(height)]}], function(err, response){
if (err)
console.log('There was an error. Check your console.');
return cb('There was an error. Check your console.');
else
return cb(response);
});
@@ -133,7 +133,7 @@ module.exports = {
} else {
client.cmd([{method:'getblock', params: [hash]}], function(err, response){
if (err)
console.log('There was an error. Check your console.');
return cb('There was an error. Check your console.');
else
return cb(response);
});
@@ -149,7 +149,7 @@ module.exports = {
} else {
client.cmd([{method:'getrawtransaction', params: [hash, 1]}], function(err, response){
if (err)
console.log('There was an error. Check your console.');
return cb('There was an error. Check your console.');
else
return cb(response);
});