Skip to content

Commit

Permalink
bugfix of deploy_local script
Browse files Browse the repository at this point in the history
  • Loading branch information
tayutaedomo committed Sep 18, 2023
1 parent 50cc9f4 commit e5a980b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hardhat/scripts/deploy_local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function main() {
const MintNFTFactory = await ethers.getContractFactory("MintNFT");
const deployedMintNFT: any = await upgrades.deployProxy(
MintNFTFactory,
[forwarder.address, secretPhraseVerifier.address, []],
[forwarder.address, secretPhraseVerifier.address],
{
initializer: "initialize",
}
Expand Down

0 comments on commit e5a980b

Please sign in to comment.