Skip to content

Commit

Permalink
chore: fix typo that caused failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasaric committed Sep 10, 2024
1 parent 071c5c6 commit e13c6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/calldata/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const validateUint = (parameter: any, input: AbiEntry) => {
if (isNumber(parameter)) {
assert(
parameter <= Number.MAX_SAFE_INTEGER,
'Validation: Parameter is to large to be typed as Number use (BigInt or String)'
'Validation: Parameter is too large to be typed as Number use (BigInt or String)'
);
}
assert(
Expand Down

0 comments on commit e13c6a6

Please sign in to comment.