Add check for amount to be returned
All checks were successful
Lint / lint (20.x) (pull_request) Successful in 4m33s
All checks were successful
Lint / lint (20.x) (pull_request) Successful in 4m33s
This commit is contained in:
parent
c6162cd036
commit
5b7f638caf
@ -324,7 +324,9 @@ export class Registry {
|
|||||||
paymentAddress: auctionWinner,
|
paymentAddress: auctionWinner,
|
||||||
});
|
});
|
||||||
|
|
||||||
const newRecords = records.filter(record => record.names !== null);
|
const newRecords = records.filter(record => {
|
||||||
|
return record.names !== null && record.names.length > 0;
|
||||||
|
});
|
||||||
|
|
||||||
for (const record of newRecords) {
|
for (const record of newRecords) {
|
||||||
if (record.id) {
|
if (record.id) {
|
||||||
|
@ -1391,11 +1391,13 @@ export class Service {
|
|||||||
amountToBeReturned = totalAuctionPrice;
|
amountToBeReturned = totalAuctionPrice;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (amountToBeReturned !== 0) {
|
||||||
await this.laconicRegistry.sendTokensToAccount(
|
await this.laconicRegistry.sendTokensToAccount(
|
||||||
project.paymentAddress,
|
project.paymentAddress,
|
||||||
amountToBeReturned.toString()
|
amountToBeReturned.toString()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async getDeployers(): Promise<Deployer[]> {
|
async getDeployers(): Promise<Deployer[]> {
|
||||||
const dbDeployers = await this.db.getDeployers();
|
const dbDeployers = await this.db.getDeployers();
|
||||||
|
Loading…
Reference in New Issue
Block a user