Split wallets by type (bitcoin and bitcoin cash)

This commit is contained in:
Gustavo Maximiliano Cortez 2017-10-05 15:18:30 -03:00
commit a853c17a0d
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
7 changed files with 76 additions and 41 deletions

View file

@ -28,7 +28,7 @@ angular.module('copayApp.controllers').controller('createController',
$scope.formData.bwsurl = defaults.bws.url;
$scope.TCValues = lodash.range(2, defaults.limits.totalCopayers + 1);
$scope.formData.derivationPath = derivationPathHelper.default;
$scope.formData.coin = 'btc';
$scope.formData.coin = data.stateParams.coin;
if (config.cashSupport) $scope.enableCash = true;