Skip to content

Commit e14e68d

Browse files
committed
fix cli
1 parent ba940b5 commit e14e68d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/src/deposit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type DepositOptions = {
99
};
1010

1111
export const deposit = async (client: DdcClient, amount: number, options: DepositOptions) => {
12-
await client.depositBalance(options.clusterId, BigInt(amount * CERE), options);
12+
await client.depositBalance(BigInt(amount * CERE));
1313
const totalBalance = await client.getDeposit(options.clusterId);
1414

1515
return Number(totalBalance / BigInt(CERE));

0 commit comments

Comments
 (0)