Skip to content

Commit

Permalink
Fix typescript tests (#295)
Browse files Browse the repository at this point in the history
* Fix typescript tests

* Fmt
  • Loading branch information
brittcyr authored Nov 25, 2024
1 parent 0689dae commit cf477db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/ts/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export const FIXED_MANIFEST_HEADER_SIZE: number = 256;
export const FIXED_GLOBAL_HEADER_SIZE: number = 96;
export const FIXED_WRAPPER_HEADER_SIZE: number = 64;
export const NIL = 4_294_967_295;
// Changed in https://github.com/CKS-Systems/manifest/pull/294
export const NIL: number = 0x7f_ff_ff_ff;
export const NO_EXPIRATION_LAST_VALID_SLOT = 0;
export const U32_MAX = 4_294_967_295;
export const PRICE_MIN_EXP = -18;
Expand Down

0 comments on commit cf477db

Please sign in to comment.