Merge pull request #6740 from cmgustavo/bug/cash-import

Adds import cash
This commit is contained in:
Matias Alejo Garcia 2017-09-15 16:26:25 -03:00 committed by GitHub
commit 833fe6706d
4 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@ angular.module('copayApp.controllers').controller('importController',
value: false
};
if (config.cashSupport.enabled) $scope.enableCash = true;
if (config.cashSupport) $scope.enableCash = true;
if ($stateParams.code)
$scope.processWalletInfo($stateParams.code);

View file

@ -12,7 +12,7 @@ angular.module('copayApp.controllers').controller('joinController',
$scope.formData.account = 1;
$scope.formData.secret = null;
$scope.formData.coin = 'btc';
if (config.cashSupport.enabled) $scope.enableCash = true;
if (config.cashSupport) $scope.enableCash = true;
resetPasswordFields();
updateSeedSourceSelect();
});