Browse Source

fixes

activeAddress
Ivan Socolsky 10 years ago
parent
commit
a46c3aa34a
  1. 1
      lib/blockchainexplorers/insight.js
  2. 2
      test/integration/server.js

1
lib/blockchainexplorers/insight.js

@ -84,7 +84,6 @@ Insight.prototype.getTransactions = function(addresses, from, to, cb) {
addrs: [].concat(addresses).join(',')
},
};
console.log('*** [insight.js ln87] args:', args); // TODO
request(args, function(err, res, txs) {
if (err || res.statusCode != 200) return cb(err || res);

2
test/integration/server.js

@ -280,7 +280,7 @@ helpers.createAddresses = function(server, wallet, main, change, cb) {
var storage, blockchainExplorer;
var useMongo = true;
var useMongo = false;
function initStorage(cb) {
function getDb(cb) {

Loading…
Cancel
Save