Matias Alejo Garcia
9 years ago
No known key found for this signature in database
GPG Key ID: 2470DB551277AB3
1 changed files with
6 additions and
4 deletions
-
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(',') |
|
|
|
}, |
|
|
|
}; |
|
|
|
|
|
|
|