Browse Source

receive address activity as json

activeAddress
Ivan Socolsky 9 years ago
parent
commit
fb035c0ffc
  1. 2
      lib/blockchainexplorers/insight.js

2
lib/blockchainexplorers/insight.js

@ -74,6 +74,7 @@ Insight.prototype.getTransaction = function(txid, cb) {
var args = {
method: 'GET',
url: url,
json: true,
};
request(args, function(err, res, tx) {
@ -117,6 +118,7 @@ Insight.prototype.getAddressActivity = function(address, cb) {
var args = {
method: 'GET',
url: url,
json: true,
};
request(args, function(err, res, result) {

Loading…
Cancel
Save