Skip to content

Commit

Permalink
fix transactions cache
Browse files Browse the repository at this point in the history
  • Loading branch information
billettc committed Sep 4, 2024
1 parent 48f4b67 commit 0ab648e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/psql.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ func (p *Psql) handleTransaction(dbBlockID int64, transactionHash string) (dbTra
return 0, fmt.Errorf("inserting transaction: %w", err)
}

p.TransactionIDs[transactionHash] = dbTransactionID
err = row.Scan(&dbTransactionID)
p.TransactionIDs[transactionHash] = dbTransactionID
return
}

Expand Down

0 comments on commit 0ab648e

Please sign in to comment.