Skip to content

Commit

Permalink
fix: use Bigint for deposit index to pass spec tests (#7344)
Browse files Browse the repository at this point in the history
fix: use Bigint for deposit index
  • Loading branch information
nflaig authored Jan 9, 2025
1 parent 3dc5e8d commit b33122f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/types/src/primitive/sszTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const SubcommitteeIndex = UintNum64;
*/
export const ValidatorIndex = UintNum64;
export const WithdrawalIndex = UintNum64;
export const DepositIndex = UintNum64;
export const DepositIndex = UintBn64;
export const Gwei = UintBn64;
export const Wei = UintBn256;
export const Root = new ByteVectorType(32);
Expand Down

0 comments on commit b33122f

Please sign in to comment.