Don't pass payment in deployment requests with auction flow

This commit is contained in:
IshaVenikar 2024-10-29 12:21:35 +05:30
parent 89aa75ff16
commit 5d7fe68351
2 changed files with 5 additions and 5 deletions

View File

@ -244,7 +244,7 @@ export class Registry {
deployment: Deployment,
appName: string,
repository: string,
auctionId?: string,
auctionId?: string | null,
lrn: string,
environmentVariables: { [key: string]: string },
dns: string,

View File

@ -649,7 +649,8 @@ export class Service {
environmentVariables: environmentVariablesObj,
dns: `${newDeployment.project.name}`,
lrn: deployer!.deployerLrn!,
payment: data.project.txHash
payment: data.project.txHash,
auctionId: data.project.auctionId
});
}
@ -661,7 +662,8 @@ export class Service {
lrn: deployer!.deployerLrn!,
environmentVariables: environmentVariablesObj,
dns: `${newDeployment.project.name}-${newDeployment.id}`,
payment: data.project.txHash
payment: data.project.txHash,
auctionId: data.project.auctionId
});
await this.db.updateDeploymentById(newDeployment.id, {
@ -727,7 +729,6 @@ export class Service {
dns: `${newDeployment.project.name}`,
auctionId: project.auctionId!,
lrn: deployerLrn,
payment: project.txHash
});
}
@ -741,7 +742,6 @@ export class Service {
lrn: deployerLrn,
environmentVariables: environmentVariablesObj,
dns: `${newDeployment.project.name}-${newDeployment.id}`,
payment: project.txHash
});
await this.db.updateDeploymentById(newDeployment.id, {