Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- [ ] Implement incremental ledger checkpoint recovery for interrupted contract event backfills
- [ ] Ensure resume avoids duplicate processing
- [ ] Add operational logs showing recovery state
- [ ] Run a quick smoke test / lint (as available)
- [x] Implement incremental ledger checkpoint recovery for interrupted contract event backfills
- [x] Ensure resume avoids duplicate processing
- [x] Add operational logs showing recovery state
- [x] Run a quick smoke test / lint (as available)
13 changes: 12 additions & 1 deletion apps/backend/src/crowdfund/crowdfund.module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { CrowdfundController } from './crowdfund.controller';
import { CrowdfundService } from './crowdfund.service';
import { CrowdfundProjectEntity } from './entities/crowdfund-project.entity';
import { CrowdfundContributionEntity } from './entities/crowdfund-contribution.entity';
import { CrowdfundMilestoneEntity } from './entities/crowdfund-milestone.entity';

@Module({
imports: [
TypeOrmModule.forFeature([
CrowdfundProjectEntity,
CrowdfundContributionEntity,
CrowdfundMilestoneEntity,
]),
],
controllers: [CrowdfundController],
providers: [CrowdfundService],
exports: [CrowdfundService],
exports: [CrowdfundService, TypeOrmModule],
})
export class CrowdfundModule {}
Loading
Loading