From e07a584816412f087df948e58a41e458aacf957b Mon Sep 17 00:00:00 2001 From: Gabriel Masclef Date: Wed, 15 Nov 2017 10:09:50 -0300 Subject: [PATCH] Unnecesary function removed --- src/pages/add/import-wallet/import-wallet.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/pages/add/import-wallet/import-wallet.ts b/src/pages/add/import-wallet/import-wallet.ts index cb8c29333..b2fb89d8a 100644 --- a/src/pages/add/import-wallet/import-wallet.ts +++ b/src/pages/add/import-wallet/import-wallet.ts @@ -156,11 +156,6 @@ export class ImportWalletPage implements OnInit { this.formData.words = info.data; } - public switchTestnetOff(): void { - this.formData.testnetEnabled = false; - this.setDerivationPath(); - } - private setDerivationPath(): void { this.formData.derivationPath = this.formData.testnet ? this.derivationPathForTestnet : this.derivationPathByDefault; }