Skip to content

Commit

Permalink
chore: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoDex committed Oct 4, 2024
1 parent 30e2ae4 commit 1622a7c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,6 @@ class CreateOrderVM {
try {
let hash: Undefinable<string> = "";

console.log(marketContracts);

if (timeInForce === LimitType.GTC) {
hash = await this.createGTCOrder(type, deposit, marketContracts);
} else {
Expand Down Expand Up @@ -410,8 +408,6 @@ class CreateOrderVM {
})
.filter((el) => el !== null);

console.log(orderList.map((el) => el.id));

const price =
settingsStore.orderType === ORDER_TYPE.Market
? orderList[orderList.length - 1].price.toString()
Expand All @@ -426,7 +422,6 @@ class CreateOrderVM {
orders: orderList.map((el) => el.id),
slippage: "10000",
};
console.log("123123123");
const data = await bcNetwork.fulfillOrderManyWithDeposit(order, marketContracts);
return data.transactionId;
};
Expand Down
2 changes: 0 additions & 2 deletions src/stores/TradeStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,6 @@ class TradeStore {

const decimals = this.market.quoteToken.decimals;

console.log("fee", tradeFee, quoteAmount);

this.tradeFee = {
makerFee: BN.formatUnits(tradeFee.makerFee, decimals),
takerFee: BN.formatUnits(tradeFee.takerFee, decimals),
Expand Down

0 comments on commit 1622a7c

Please sign in to comment.