Skip to content

Commit

Permalink
fix: rename deposit status unfilled value
Browse files Browse the repository at this point in the history
  • Loading branch information
amateima committed Jan 13, 2025
1 parent 5f92176 commit 753348e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/indexer-api/src/services/deposits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ export class DepositsService {
}

const result = {
status: relay.status,
status:
relay.status === entities.RelayStatus.Unfilled
? "pending"
: relay.status,
originChainId: relay.originChainId,
depositId: relay.depositId,
depositTxHash: relay.depositTxHash,
Expand Down

0 comments on commit 753348e

Please sign in to comment.