Skip to content

Commit 8f9e0d0

Browse files
committed
fix(MarketplaceOrdersService): log results and correct invalidation logic
- Added console logging for results and changed the invalidation logic to correctly reflect the validity status of orders.
1 parent ff9aa3e commit 8f9e0d0

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)