Skip to content

Commit a3be170

Browse files
committed
Fix getSuccessfulByTracker()
1 parent 1a8934d commit a3be170

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/models/logic/transaction.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,8 @@ export async function getSuccessfulByTracker(
639639
try {
640640
return await models.Transaction.findOne({
641641
where: {
642-
tracker: strip0xPrefix(tracker.toString())
642+
tracker: strip0xPrefix(tracker.toString()),
643+
isPending: false
643644
},
644645
transaction: options.transaction
645646
});

0 commit comments

Comments
 (0)