Skip to content

Commit

Permalink
Don't pass constructor params for BaseWormholeGateway verification
Browse files Browse the repository at this point in the history
The implementation contract was failing basescan verification unless the
constructor params were empty.
  • Loading branch information
nkuba committed Jul 31, 2023
1 parent 765c5d6 commit 7976e64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
// link the proxy to the implementation contract’s ABI on (Ether)scan.
await hre.run("verify", {
address: proxyDeployment.address,
constructorArgsParams: proxyDeployment.args,
constructorArgsParams: [],
})
}
}
Expand Down

0 comments on commit 7976e64

Please sign in to comment.