Skip to content

Commit fce1d4d

Browse files
committed
connect to locker server by default
1 parent 87bba46 commit fce1d4d

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

config.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ var config = {
1818
},
1919
lockOpts: {
2020
// To use locker-server, uncomment this:
21-
// lockerServer: {
22-
// host: 'localhost',
23-
// port: 3231,
24-
// },
21+
lockerServer: {
22+
host: 'localhost',
23+
port: 3231,
24+
},
2525
},
2626
messageBrokerOpts: {
2727
// To use message broker server, uncomment this:

lib/blockchainmonitor.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ log.debug = log.verbose;
99
var BlockchainExplorer = require('./blockchainexplorer');
1010
var Storage = require('./storage');
1111
var MessageBroker = require('./messagebroker');
12+
var Lock = require('./lock');
13+
var EmailService = require('./emailservice');
1214

1315
var Notification = require('./model/notification');
1416

@@ -84,7 +86,6 @@ BlockchainMonitor.prototype._initExplorer = function(provider, network, url) {
8486

8587
BlockchainMonitor.prototype._handleIncommingTx = function(data) {
8688
var self = this;
87-
var walletId = walletService.walletId;
8889

8990
if (!data || !data.vout) return;
9091

lib/templates/new_copayer.plain

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<%= subjectPrefix %>New copayer
2+
A new copayer just joined your wallet <%= walletName %>.
File renamed without changes.

0 commit comments

Comments
 (0)