Browse Source

add uniq to insight queries

feat/estimateFee-limit
matiu 8 years ago
parent
commit
b74318862e
  1. 4
      lib/blockchainexplorers/insight.js

4
lib/blockchainexplorers/insight.js

@ -57,7 +57,7 @@ Insight.prototype.getUtxos = function(addresses, cb) {
method: 'POST',
path: this.apiPrefix + '/addrs/utxo',
json: {
addrs: [].concat(addresses).join(',')
addrs: _.uniq([].concat(addresses)).join(',')
},
};
@ -116,7 +116,7 @@ Insight.prototype.getTransactions = function(addresses, from, to, cb) {
method: 'POST',
path: this.apiPrefix + '/addrs/txs' + (qs.length > 0 ? '?' + qs.join('&') : ''),
json: {
addrs: [].concat(addresses).join(',')
addrs: _.uniq([].concat(addresses)).join(',')
},
timeout: 120000,
};

Loading…
Cancel
Save