Skip to content

Commit

Permalink
fix: uint256 type
Browse files Browse the repository at this point in the history
  • Loading branch information
janek26 committed Dec 1, 2021
1 parent e5bdb18 commit 2e05902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/stark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ export function formatSignature(sig?: [BigNumberish, BigNumberish]): [string, st
}
}

export function compileStructToCalldata<S extends { [k: string]: string }>(struct: S): string[] {
export function compileStructToCalldata<S>(struct: S): string[] {
return Object.values(struct);
}

0 comments on commit 2e05902

Please sign in to comment.