no backup warning for TESTNET wallets

This commit is contained in:
Matias Alejo Garcia 2015-04-26 20:30:09 -03:00
commit 6f1721d7c1

View file

@ -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();
}); });
}); });