disable hardware wallets
This commit is contained in:
parent
8fc5ce22a7
commit
06ebb10e9a
3 changed files with 12 additions and 3 deletions
|
|
@ -75,18 +75,23 @@ angular.module('copayApp.controllers').controller('createController',
|
|||
|
||||
$scope.seedSource = seedOptions[0];
|
||||
|
||||
if (n > 1 && isChromeApp)
|
||||
/*
|
||||
|
||||
Disable Hardware Wallets
|
||||
|
||||
if (n > 1 && isChromeApp) {
|
||||
seedOptions.push({
|
||||
id: 'ledger',
|
||||
label: 'Ledger Hardware Wallet',
|
||||
});
|
||||
|
||||
}
|
||||
if (isChromeApp || isDevel) {
|
||||
seedOptions.push({
|
||||
id: 'trezor',
|
||||
label: 'Trezor Hardware Wallet',
|
||||
});
|
||||
}
|
||||
*/
|
||||
$scope.seedOptions = seedOptions;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue