removed insertion of transaction into db

This commit is contained in:
yurii 2025-07-04 12:46:50 +01:00
parent 41cf71a253
commit b303481b5f

View File

@ -310,9 +310,9 @@ func (app *App) startTransaction(w http.ResponseWriter, r *http.Request) {
} }
// Insert into DB // Insert into DB
if err := payment.InsertTransactionRecord(r.Context(), app.db, result); err != nil { // if err := payment.InsertTransactionRecord(r.Context(), app.db, result); err != nil {
log.Errorf("DB insert error: %v", err) // log.Errorf("DB insert error: %v", err)
} // }
theResponse.Data = payment.BuildRedirectURL(result) theResponse.Data = payment.BuildRedirectURL(result)