Browse Source

Merge pull request #542 from matiu/bug/trim-opts

mv post params to query string
activeAddress
Matias Alejo Garcia 9 years ago
committed by GitHub
parent
commit
f791a7c7e4
  1. 10
      lib/blockchainexplorers/insight.js

10
lib/blockchainexplorers/insight.js

@ -100,14 +100,16 @@ Insight.prototype.getTransactions = function(addresses, from, to, cb) {
if (_.isNumber(from)) qs.push('from=' + from);
if (_.isNumber(to)) qs.push('to=' + to);
// Trim output
qs.push('noAsm=1');
qs.push('noScriptSig=1');
qs.push('noSpent=1');
var args = {
method: 'POST',
path: this.apiPrefix + '/addrs/txs' + (qs.length > 0 ? '?' + qs.join('&') : ''),
json: {
addrs: [].concat(addresses).join(','),
noAsm: 1,
noScriptSig: 1,
noSpent: 1,
addrs: [].concat(addresses).join(',')
},
};

Loading…
Cancel
Save