We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba940b5 commit e14e68dCopy full SHA for e14e68d
packages/cli/src/deposit.ts
@@ -9,7 +9,7 @@ export type DepositOptions = {
9
};
10
11
export const deposit = async (client: DdcClient, amount: number, options: DepositOptions) => {
12
- await client.depositBalance(options.clusterId, BigInt(amount * CERE), options);
+ await client.depositBalance(BigInt(amount * CERE));
13
const totalBalance = await client.getDeposit(options.clusterId);
14
15
return Number(totalBalance / BigInt(CERE));
0 commit comments