Skip to content

Commit

Permalink
fix: invariant value
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksandre authored and ukorvl committed Aug 2, 2024
1 parent 818e1af commit 609c494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contracts/WalletV1/WalletV1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ export class WalletV1 {
};
} else {
invariant(
(abi && args) || (!abi && !args),
!(abi || args),
"ABI and args should be provided together or not provided at all.",
);
deployData = {
Expand Down

0 comments on commit 609c494

Please sign in to comment.