Skip to content

Commit

Permalink
fix deployment args for non-fungible tokens
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Zhang <[email protected]>
  • Loading branch information
jimthematrix committed Dec 16, 2024
1 parent a51e340 commit e02bf1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solidity/test/lib/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export async function deployZeto(tokenName: string) {
batchLockVerifier,
] = args;
if (!isFungible) {
({ deployerAddr, verifier, lockVerifier } = args);
([deployerAddr, verifier, lockVerifier] = args);
}

// we want to test the effectiveness of the factory contract
Expand Down

0 comments on commit e02bf1c

Please sign in to comment.