Fix incorrect display string name inputTooToBeAtLeast

This commit is contained in:
Devin Bileck 2019-03-24 22:56:18 -07:00
parent 47fb177c07
commit a902a7b627
No known key found for this signature in database
GPG Key ID: C86D829C2399D073
2 changed files with 2 additions and 2 deletions

View File

@ -288,7 +288,7 @@ public class ChangeParamValidator extends ProposalValidator implements Consensus
if (change < (1 / min)) {
double val = currentValue / min;
String value = getFormattedValue(param, val);
throw new ParamValidationException(ParamValidationException.ERROR.TOO_LOW, Res.get("validation.inputTooToBeAtLeast", value));
throw new ParamValidationException(ParamValidationException.ERROR.TOO_LOW, Res.get("validation.inputToBeAtLeast", value));
}
}

View File

@ -2797,7 +2797,7 @@ validation.interacETransfer.invalidQuestion=Must contain only letters, numbers,
validation.interacETransfer.invalidAnswer=Must be one word and contain only letters, numbers, and/or the symbol -
validation.inputTooLarge=Input must not be larger than {0}
validation.inputTooSmall=Input has to be larger than {0}
validation.inputTooToBeAtLeast=Input has to be at least {0}
validation.inputToBeAtLeast=Input has to be at least {0}
validation.amountBelowDust=The amount below the dust limit of {0} is not allowed.
validation.length=Length must be between {0} and {1}
validation.pattern=Input must be of format: {0}