Skip to content

Commit 39105c6

Browse files
tabaktonipenovicp
andauthored
Update src/utils/cairoDataTypes/uint256.ts
Co-authored-by: Petar Penović <pp@spaceshard.io>
1 parent 8789821 commit 39105c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/cairoDataTypes/uint256.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class CairoUint256 {
7171
const bigIntLow = BigInt(low);
7272
const bigIntHigh = BigInt(high);
7373
if (bigIntLow < UINT_256_LOW_MIN || bigIntLow > UINT_256_LOW_MAX) {
74-
throw new Error('low is our of range UINT_256_LOW_MIN - UINT_256_LOW_MAX');
74+
throw new Error('low is out of range UINT_256_LOW_MIN - UINT_256_LOW_MAX');
7575
}
7676
if (bigIntHigh < UINT_256_HIGH_MIN || bigIntHigh > UINT_256_HIGH_MAX) {
7777
throw new Error('high is our of range UINT_256_HIGH_MIN - UINT_256_HIGH_MAX');

0 commit comments

Comments
 (0)