Skip to content

Commit

Permalink
fix: circular dependency in invalid logger name
Browse files Browse the repository at this point in the history
  • Loading branch information
dnechay committed Feb 24, 2025
1 parent 8209f31 commit f8f4984
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
BACKOFF_INTERVAL_SECONDS,
DEFAULT_BULK_PAYOUT_TX_ID,
} from '../../common/constants';
import { WebhookIncomingService } from '../webhook/webhook-incoming.service';
import { PayoutService } from '../payout/payout.service';
import { ReputationService } from '../reputation/reputation.service';
import { Web3Service } from '../web3/web3.service';
Expand All @@ -34,7 +33,7 @@ import logger from '../../logger';
@Injectable()
export class EscrowCompletionService {
private readonly logger = logger.child({
context: WebhookIncomingService.name,
context: EscrowCompletionService.name,
});

constructor(
Expand Down

0 comments on commit f8f4984

Please sign in to comment.