Skip to content

Commit

Permalink
fix: remove duplicated info
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolin committed Nov 21, 2023
1 parent 306b868 commit 9e7ea49
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/domain/checkForAndPlaceOrder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ export async function checkForAndPlaceOrder(
);
const ordersPendingDelete = [];
// enumerate all the `ConditionalOrder`s for a given owner
log.debug(
`Process owner ${owner} (${conditionalOrders.size} orders): ${registry.numOrders}`
);
log.debug(`Process owner ${owner} (${conditionalOrders.size} orders)`);
for (const conditionalOrder of conditionalOrders) {
orderCounter++;
const ownerRef = `${ownerCounter}.${orderCounter}`;
Expand Down

0 comments on commit 9e7ea49

Please sign in to comment.