WIP: performance in chrome

This commit is contained in:
Matias Alejo Garcia 2015-08-31 18:10:46 -03:00
commit ab78588a9f
6 changed files with 19 additions and 8 deletions

View file

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('splashController',
function($scope, $timeout, $log, profileService, storageService, go) {
function($scope, $timeout, $log, profileService, storageService, go, bwcService) {
storageService.getCopayDisclaimerFlag(function(err, val) {
if (!val) go.path('disclaimer');
@ -29,4 +29,12 @@ angular.module('copayApp.controllers').controller('splashController',
});
}, 100);
};
console.log('[splash.js.32]'); //TODO
var a = bwcService.getClient();
console.log('[splash.js.34]'); //TODO
a.seedFromMnemonic('glare benefit approve speak post afford spot cancel argue cushion unaware kitchen');
console.log("LISTO", a.credentials);
});