Skip to content

Commit

Permalink
chore: fix error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
petertonysmith94 committed Dec 30, 2024
1 parent eb24fc1 commit c1eed36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/abi-coder/src/encoding/coders/BigNumberCoder.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('BigNumberCoder', () => {
() => coder.encode(value),
new FuelError(
ErrorCode.ENCODE_ERROR,
'Invalid u64 type - too large. Number can only safely handle up to 53 bits.'
'Invalid u64 type - number value is too large. Number can only safely handle up to 53 bits.'
)
);
});
Expand All @@ -64,7 +64,7 @@ describe('BigNumberCoder', () => {
() => coder.encode(value),
new FuelError(
ErrorCode.ENCODE_ERROR,
'Invalid u64 type - too large. Number can only safely handle up to 53 bits.'
'Invalid u64 type - number value is too large. Number can only safely handle up to 53 bits.'
)
);
});
Expand Down

0 comments on commit c1eed36

Please sign in to comment.