1
0
Fork 0
forked from lthn/blockchain

gui: NOT_ENOUGH_OUTPUTS_FOR_MIXING is supported in front-end

This commit is contained in:
sowle 2020-08-09 01:28:01 +03:00
parent e1cd7e10d8
commit 4c46efc9c8
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC
2 changed files with 2 additions and 0 deletions

View file

@ -1815,6 +1815,7 @@ var BackendService = /** @class */ (function () {
error_translate = 'ERRORS.NO_MONEY';
}
break;
case 'NOT_ENOUGH_OUTPUTS_FOR_MIXING':
case 'INTERNAL_ERROR:not enough outputs to mix':
error_translate = 'ERRORS.NOT_ENOUGH_OUTPUTS_TO_MIX';
break;

View file

@ -81,6 +81,7 @@ export class BackendService {
error_translate = 'ERRORS.NO_MONEY';
}
break;
case 'NOT_ENOUGH_OUTPUTS_FOR_MIXING':
case 'INTERNAL_ERROR:not enough outputs to mix':
error_translate = 'ERRORS.NOT_ENOUGH_OUTPUTS_TO_MIX';
break;