Change field name in deployer entity
This commit is contained in:
parent
5d7fe68351
commit
c4ca9517c0
@ -19,7 +19,7 @@ export class Deployer {
|
|||||||
minimumPayment!: string | null;
|
minimumPayment!: string | null;
|
||||||
|
|
||||||
@Column('varchar', { nullable: true })
|
@Column('varchar', { nullable: true })
|
||||||
deployerAddress!: string | null;
|
paymentAddress!: string | null;
|
||||||
|
|
||||||
@ManyToMany(() => Project, (project) => project.deployers)
|
@ManyToMany(() => Project, (project) => project.deployers)
|
||||||
projects!: Project[];
|
projects!: Project[];
|
||||||
|
@ -912,7 +912,7 @@ export class Service {
|
|||||||
|
|
||||||
if (deployer.minimumPayment && project.txHash) {
|
if (deployer.minimumPayment && project.txHash) {
|
||||||
const txResponse = await this.laconicRegistry.sendTokensToAccount(
|
const txResponse = await this.laconicRegistry.sendTokensToAccount(
|
||||||
deployer?.deployerAddress!,
|
deployer?.paymentAddress!,
|
||||||
deployer?.minimumPayment
|
deployer?.minimumPayment
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -1423,7 +1423,7 @@ export class Service {
|
|||||||
const deployerLrn = record.names[0];
|
const deployerLrn = record.names[0];
|
||||||
const deployerApiUrl = record.attributes.apiUrl;
|
const deployerApiUrl = record.attributes.apiUrl;
|
||||||
const minimumPayment = record.attributes.minimumPayment;
|
const minimumPayment = record.attributes.minimumPayment;
|
||||||
const deployerAddress = record.attributes.paymentAddress;
|
const paymentAddress = record.attributes.paymentAddress;
|
||||||
const baseDomain = deployerApiUrl.substring(deployerApiUrl.indexOf('.') + 1);
|
const baseDomain = deployerApiUrl.substring(deployerApiUrl.indexOf('.') + 1);
|
||||||
|
|
||||||
const deployerData = {
|
const deployerData = {
|
||||||
@ -1432,7 +1432,7 @@ export class Service {
|
|||||||
deployerApiUrl,
|
deployerApiUrl,
|
||||||
baseDomain,
|
baseDomain,
|
||||||
minimumPayment,
|
minimumPayment,
|
||||||
deployerAddress
|
paymentAddress
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: Update deployers table in a separate job
|
// TODO: Update deployers table in a separate job
|
||||||
|
Loading…
Reference in New Issue
Block a user