no backup warning for TESTNET wallets

This commit is contained in:
Matias Alejo Garcia 2015-04-26 20:30:09 -03:00
parent e38f9a4611
commit 6f1721d7c1
1 changed files with 5 additions and 5 deletions

View File

@ -97,7 +97,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.copayers = [];
storageService.getBackupFlag(self.walletId, function(err, val) {
self.needsBackup = !val;
self.needsBackup = self.network == 'testnet' ? false : !val;
self.openWallet();
});
});