no backup warning for TESTNET wallets
This commit is contained in:
parent
e38f9a4611
commit
6f1721d7c1
1 changed files with 5 additions and 5 deletions
|
|
@ -97,7 +97,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
self.copayers = [];
|
self.copayers = [];
|
||||||
|
|
||||||
storageService.getBackupFlag(self.walletId, function(err, val) {
|
storageService.getBackupFlag(self.walletId, function(err, val) {
|
||||||
self.needsBackup = !val;
|
self.needsBackup = self.network == 'testnet' ? false : !val;
|
||||||
self.openWallet();
|
self.openWallet();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue