set backup done flag if wallet is created from a specified phrase

This commit is contained in:
Gabriel Bazán 2016-07-06 15:25:44 -03:00
commit 612ff20df1

View file

@ -176,6 +176,11 @@ angular.module('copayApp.controllers').controller('createController',
});
return;
}
if (self.seedSourceId == 'set') {
$timeout(function() {
$rootScope.$emit('Local/BackupDone');
}, 1);
}
go.walletHome();
});