fix(identity-service): add BlockchainEventConsumerService to InfrastructureModule
The consumer was not being initialized because it was not registered in the module.
This commit is contained in:
parent
bad6ba2232
commit
106137224a
|
|
@ -8,6 +8,7 @@ import { UserAccountMapper } from './persistence/mappers/user-account.mapper';
|
|||
import { RedisService } from './redis/redis.service';
|
||||
import { EventPublisherService } from './kafka/event-publisher.service';
|
||||
import { MpcEventConsumerService } from './kafka/mpc-event-consumer.service';
|
||||
import { BlockchainEventConsumerService } from './kafka/blockchain-event-consumer.service';
|
||||
import { SmsService } from './external/sms/sms.service';
|
||||
import { BlockchainClientService } from './external/blockchain/blockchain-client.service';
|
||||
import { MpcClientService, MpcWalletService } from './external/mpc';
|
||||
|
|
@ -33,6 +34,7 @@ import { MPC_KEY_SHARE_REPOSITORY } from '@/domain/repositories/mpc-key-share.re
|
|||
RedisService,
|
||||
EventPublisherService,
|
||||
MpcEventConsumerService,
|
||||
BlockchainEventConsumerService,
|
||||
SmsService,
|
||||
// BlockchainClientService 调用 blockchain-service API
|
||||
BlockchainClientService,
|
||||
|
|
@ -50,6 +52,7 @@ import { MPC_KEY_SHARE_REPOSITORY } from '@/domain/repositories/mpc-key-share.re
|
|||
RedisService,
|
||||
EventPublisherService,
|
||||
MpcEventConsumerService,
|
||||
BlockchainEventConsumerService,
|
||||
SmsService,
|
||||
BlockchainClientService,
|
||||
MpcClientService,
|
||||
|
|
|
|||
Loading…
Reference in New Issue