Adds limit to create addresses

This commit is contained in:
Gustavo Maximiliano Cortez 2015-11-04 16:17:04 -03:00
commit 441bb94e4b
2 changed files with 13 additions and 2 deletions

View file

@ -93,6 +93,9 @@ angular.module('copayApp.services')
case 'INVALID_BACKUP':
body = gettextCatalog.getString('Wallet seed is invalid');
break;
case 'MAIN_ADDRESS_GAP_REACHED':
body = gettextCatalog.getString('You cannot generate more until you register any activity');
break;
case 'ERROR':
body = (err.message || err.error);