Skip to content

Commit

Permalink
fix(deployment): fix console arg to object mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 authored Nov 28, 2024
1 parent 6a472ab commit 6126106
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { TxSignerService } from "../tx-signer/tx-signer.service";

export interface ProviderCleanupParams {
concurrency: number;
providerAddress: string;
provider: string;
dryRun: boolean;
}

Expand Down Expand Up @@ -53,7 +53,7 @@ export class ProviderCleanupService {
const client = await this.txSignerService.getClientForAddressIndex(wallet.id);
const deployments = await this.deploymentRepository.findDeploymentsForProvider({
owner: wallet.address,
provider: options.providerAddress
provider: options.provider
});

const closeAllWalletStaleDeployments = deployments.map(async deployment => {
Expand Down

0 comments on commit 6126106

Please sign in to comment.