Skip to content

Commit

Permalink
fix: fix column name (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
amateima authored Oct 29, 2024
1 parent fdd647e commit 2f40431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/indexer/src/services/spokePoolProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export class SpokePoolProcessor {
const refundBundleEvent = await bundleEventsRepository
.createQueryBuilder("be")
.leftJoinAndSelect("bundle", "bundle", "be.bundleId = bundle.id")
.where("be.eventType = :expiredDeposit", {
.where("be.type = :expiredDeposit", {
expiredDeposit: entities.BundleEventType.ExpiredDeposit,
})
.andWhere("be.relayHash = :expiredDepositRelayHash", {
Expand Down

0 comments on commit 2f40431

Please sign in to comment.