Skip to content

Commit

Permalink
chore: redundant args
Browse files Browse the repository at this point in the history
  • Loading branch information
byeongsu-hong committed Feb 28, 2024
1 parent 4ba2d1d commit d20bde5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/commands/contract.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Command } from "commander";

import { contractNames } from "../shared/constants";
import { executeContract } from "../shared/contract";
import { CONTAINER, Dependencies } from "../shared/ioc";
import { getNetwork } from "../shared/config";
import { addPad } from "../shared/utils";

export const contractCmd = new Command("contract").configureHelp({
Expand All @@ -19,7 +19,7 @@ contractCmd
.argument("dest-domian")
.argument("recipient-addr")
.argument("msg-body")
.action(async (destDomain, recipientAddr, msgBody, _, cmd) => {
.action(async (destDomain, recipientAddr, msgBody) => {
const { ctx, client } = CONTAINER.get(Dependencies);

const mailbox = ctx.deployments.core?.mailbox!;
Expand Down

0 comments on commit d20bde5

Please sign in to comment.