Skip to content

Commit 2537a1e

Browse files
authored
Merge pull request #297 from hypercerts-org/bugfix/invalidation-negation-error
fix(MarketplaceOrdersService): log results and correct invalidation l…
2 parents ff9aa3e + 8f9e0d0 commit 2537a1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/database/entities/MarketplaceOrdersEntityService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ export class MarketplaceOrdersService {
320320
})
321321
.map((x) => ({
322322
id: x.id,
323-
invalidated: x.valid,
323+
invalidated: !x.valid,
324324
validator_codes: x.validatorCodes,
325325
}));
326326

0 commit comments

Comments
 (0)