Skip to content

Commit

Permalink
Update deploy.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
maradini77 authored and Aniket-Engg committed Jan 10, 2025
1 parent afa49e7 commit 47a1357
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/remix-ui/run-tab/src/lib/actions/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export const getSelectedContract = (contractName: string, compiler: CompilerAbst
return txHelper.getConstructorInterface(contract.object.abi)
},
getConstructorInputs: () => {
const constructorInteface = txHelper.getConstructorInterface(contract.object.abi)
const constructorInterface = txHelper.getConstructorInterface(contract.object.abi)

return txHelper.inputParametersDeclarationToString(constructorInteface.inputs)
return txHelper.inputParametersDeclarationToString(constructorInterface.inputs)
},
isOverSizeLimit: async (args: string) => {
const encodedParams = await txFormat.encodeParams(args, txHelper.getConstructorInterface(contract.object.abi))
Expand Down

0 comments on commit 47a1357

Please sign in to comment.