Skip to content

Commit

Permalink
fix: remove 'u64' from NumberCoderType
Browse files Browse the repository at this point in the history
  • Loading branch information
bajpai244 committed Aug 30, 2024
1 parent e04947a commit 03641c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abi-coder/src/encoding/coders/NumberCoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { WORD_SIZE } from '../../utils/constants';

import { Coder } from './AbstractCoder';

type NumberCoderType = 'u8' | 'u16' | 'u32' | 'u64';
type NumberCoderType = 'u8' | 'u16' | 'u32';

const getLength = (baseType: NumberCoderType): number => {
switch (baseType) {
Expand Down

0 comments on commit 03641c7

Please sign in to comment.