Skip to content

Commit

Permalink
Update composite-client.ts to throw not log error on placeOrder (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachwax101 authored Sep 16, 2024
1 parent 2b57638 commit f0ed2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v4-client-js/src/clients/composite-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ export class CompositeClient {
msg
.then((it) => resolve([it]))
.catch((err) => {
console.log(err);
throw err;
});
});
const orderFlags = calculateOrderFlags(type, timeInForce);
Expand Down

0 comments on commit f0ed2f2

Please sign in to comment.