Skip to content

Commit

Permalink
Update native/database/db.go
Browse files Browse the repository at this point in the history
  • Loading branch information
sczembor authored Nov 25, 2024
1 parent 7692583 commit d8de8ba
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion native/database/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ func GetTransaction(txID uint64) (*Transaction, error) {
err = row.Scan(&tx.BtcTxID, &tx.RawTx, &tx.Status)
if err != nil {
if err == sql.ErrNoRows {
println("no rows!!!!!!!")
return nil, nil // Return nil, nil if no transaction was found
}
return nil, err
Expand Down

0 comments on commit d8de8ba

Please sign in to comment.