Update sql_store.go

This commit is contained in:
İsmail
2024-11-08 22:40:28 +03:00
parent 12683cf405
commit a76316b46a

View File

@@ -1166,7 +1166,8 @@ func (s *SqlStore) ExecuteInTransaction(ctx context.Context, operation func(stor
func (s *SqlStore) withTx(tx *gorm.DB) Store {
return &SqlStore{
db: tx,
db: tx,
storeEngine: s.storeEngine,
}
}