Browse Source

remove unused opts on wallet service init

activeAddress
Ivan Socolsky 10 years ago
parent
commit
1ea9447223
  1. 7
      test/integration/server.js

7
test/integration/server.js

@ -210,7 +210,7 @@ helpers.createAddresses = function(server, wallet, main, change, cb) {
}); });
}; };
var storage, blockchainExplorer, mailer; var storage, blockchainExplorer;
var useMongo = false; var useMongo = false;
@ -250,14 +250,9 @@ describe('Wallet service', function() {
beforeEach(function(done) { beforeEach(function(done) {
resetStorage(function() { resetStorage(function() {
blockchainExplorer = sinon.stub(); blockchainExplorer = sinon.stub();
mailer = sinon.stub();
WalletService.initialize({ WalletService.initialize({
storage: storage, storage: storage,
blockchainExplorer: blockchainExplorer, blockchainExplorer: blockchainExplorer,
mailer: mailer,
emailOpts: {
from: 'bws@dummy.net',
}
}, done); }, done);
}); });
}); });

Loading…
Cancel
Save