Adds limits 500usd per day per user

This commit is contained in:
Gustavo Maximiliano Cortez 2016-06-06 12:07:47 -03:00
commit d25cb3d02e
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
4 changed files with 76 additions and 12 deletions

View file

@ -139,6 +139,9 @@ angular.module('copayApp.services')
case 'PASSWORD_INCORRECT':
body = gettextCatalog.getString('Wrong spending password');
break;
case 'EXCEEDED_DAYLY_LIMIT':
body = gettextCatalog.getString('Exceeded dayly limit of $500 per user');
break;
case 'ERROR':
body = (err.message || err.error);
break;