xrpl 4.5.0-smartescrow.1 → 4.5.0-smartescrow.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/xrpl-latest.js
CHANGED
@@ -20142,7 +20142,7 @@ class Int32 extends uint_1.UInt {
|
|
20142
20142
|
return new Int32(buf);
|
20143
20143
|
}
|
20144
20144
|
if (typeof val === 'number') {
|
20145
|
-
Int32.checkUintRange(val,
|
20145
|
+
Int32.checkUintRange(val, -2147483648, 2147483647);
|
20146
20146
|
(0, utils_1.writeInt32BE)(buf, val, 0);
|
20147
20147
|
return new Int32(buf);
|
20148
20148
|
}
|