Merge pull request #4409 from JDonadio/fix/double-scan

Remove handle imported client method
This commit is contained in:
Matias Alejo Garcia 2016-06-15 13:23:17 -03:00 committed by GitHub
commit 66506a9f8d
2 changed files with 18 additions and 34 deletions

View file

@ -290,7 +290,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
} else {
self.isSingleAddress = !!ret.wallet.singleAddress;
if (!opts.quiet)
self.updating = ret.wallet.scanStatus == 'running';
self.updating = ret.wallet.scanStatus == 'running';
}
return cb(err, ret);
});
@ -1032,7 +1032,6 @@ angular.module('copayApp.controllers').controller('indexController', function($r
});
};
self.initGlidera = function(accessToken) {
self.glideraEnabled = configService.getSync().glidera.enabled;
self.glideraTestnet = configService.getSync().glidera.testnet;