Skip to content

Commit

Permalink
fix: typos (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
joohhnnn authored Dec 1, 2023
1 parent aa68ccd commit b2431d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/calldata/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const validateStruct = (parameter: any, input: AbiEntry, structs: AbiStructs) =>
if (input.type === 'core::starknet::eth_address::EthAddress') {
assert(
typeof parameter !== 'object',
`EthAdress type is waiting a BigNumberish. Got ${parameter}`
`EthAddress type is waiting a BigNumberish. Got ${parameter}`
);
const param = BigInt(parameter.toString(10));
assert(
Expand Down

0 comments on commit b2431d3

Please sign in to comment.