remove alerts
This commit is contained in:
parent
81a20cb1dc
commit
c6e151db99
2 changed files with 0 additions and 3 deletions
|
|
@ -223,7 +223,6 @@ Network.prototype._setupConnectionHandlers = function(cb) {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
self.socket.on('connect', function() {
|
self.socket.on('connect', function() {
|
||||||
alert('socket connected!');
|
|
||||||
self.socket.on('disconnect', function() {
|
self.socket.on('disconnect', function() {
|
||||||
self.cleanUp();
|
self.cleanUp();
|
||||||
});
|
});
|
||||||
|
|
@ -298,7 +297,6 @@ Network.prototype.start = function(opts, openCallback) {
|
||||||
this.socket.emit('subscribe', pubkey);
|
this.socket.emit('subscribe', pubkey);
|
||||||
this.socket.emit('sync', opts.lastTimestamp);
|
this.socket.emit('sync', opts.lastTimestamp);
|
||||||
this.started = true;
|
this.started = true;
|
||||||
alert('started = true');
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,6 @@ angular.module('copayApp.services')
|
||||||
notification.error('Error', 'Received corrupt message from ' + peerId);
|
notification.error('Error', 'Received corrupt message from ' + peerId);
|
||||||
});
|
});
|
||||||
w.on('ready', function(myPeerID) {
|
w.on('ready', function(myPeerID) {
|
||||||
alert('wallet ready!');
|
|
||||||
$rootScope.wallet = w;
|
$rootScope.wallet = w;
|
||||||
if ($rootScope.pendingPayment) {
|
if ($rootScope.pendingPayment) {
|
||||||
$location.path('send');
|
$location.path('send');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue