Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
mattheworris committed Oct 25, 2024
1 parent 0546e5d commit b9dc0e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/account-lib/src/utils/blockchain-scanner.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import '@frequency-chain/api-augment';
import { Logger } from '@nestjs/common';
import { BlockHash, SignedBlock } from '@polkadot/types/interfaces';
import { BlockchainRpcQueryService } from '#blockchain/blockchain-rpc-query.service';
import { BlockchainService } from '#blockchain/blockchain.service';
import Redis from 'ioredis';
import { FrameSystemEventRecord } from '@polkadot/types/lookup';

Expand Down Expand Up @@ -36,7 +36,7 @@ export abstract class BlockchainScannerService {

constructor(
protected cacheManager: Redis,
protected readonly blockchainService: BlockchainRpcQueryService,
protected readonly blockchainService: BlockchainService,
protected readonly logger: Logger,
) {
this.lastSeenBlockNumberKey = `${this.constructor.name}:${LAST_SEEN_BLOCK_NUMBER_KEY}`;
Expand Down

0 comments on commit b9dc0e3

Please sign in to comment.