Skip to content

Commit

Permalink
delete console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Dec 6, 2023
1 parent 25277d0 commit 3f397d8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class StartAuctionEventHandler {
) {}

async handle(event: any, hash: string, marketplaceType: MarketplaceTypeEnum) {
console.log(11111111);
const { auctionTokenEvent, topics } = this.getEventAndTopics(event);
if (!auctionTokenEvent && !topics) return;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export class MarketplaceEventsService {

public async handleNftAuctionEvents(auctionEvents: any[], hash: string, marketplaceType: MarketplaceTypeEnum) {
for (let event of auctionEvents) {
console.log({ event });
switch (event.identifier) {
case AuctionEventEnum.BidEvent:
case KroganSwapAuctionEventEnum.Bid:
Expand Down
2 changes: 0 additions & 2 deletions src/modules/rabbitmq/blockchain-events/nft-events.consumer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,9 @@ export class NftEventsConsumer {
const externalMarketplaces = await this.marketplaceService.getExternalMarketplacesAddreses();
const disabledMarketplaces = await this.marketplaceService.getDisabledMarketplacesAddreses();

console.log({ disabledMarketplaces: JSON.stringify(disabledMarketplaces) });
const disabledMarketplacesEvents = nftAuctionEvents?.events?.filter(
(e: { address: any }) => disabledMarketplaces.includes(e.address) === true,
);
console.log({ disabledMarketplacesEvents: JSON.stringify(disabledMarketplacesEvents) });

const internalMarketplaceEvents = nftAuctionEvents?.events?.filter(
(e: { address: any }) => internalMarketplaces.includes(e.address) === true,
Expand Down

0 comments on commit 3f397d8

Please sign in to comment.