diff options
Diffstat (limited to 'src/mint/mint_db.h')
-rw-r--r-- | src/mint/mint_db.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mint/mint_db.h b/src/mint/mint_db.h index 01fd737bd..ff14ba1e4 100644 --- a/src/mint/mint_db.h +++ b/src/mint/mint_db.h | |||
@@ -302,6 +302,7 @@ TALER_MINT_DB_get_connection (void); | |||
302 | /** | 302 | /** |
303 | * Start a transaction. | 303 | * Start a transaction. |
304 | * | 304 | * |
305 | * @param db_conn connection to use | ||
305 | * @return #GNUNET_OK on success | 306 | * @return #GNUNET_OK on success |
306 | */ | 307 | */ |
307 | int | 308 | int |
@@ -311,6 +312,7 @@ TALER_MINT_DB_transaction (PGconn *db_conn); | |||
311 | /** | 312 | /** |
312 | * Commit a transaction. | 313 | * Commit a transaction. |
313 | * | 314 | * |
315 | * @param db_conn connection to use | ||
314 | * @return #GNUNET_OK on success | 316 | * @return #GNUNET_OK on success |
315 | */ | 317 | */ |
316 | int | 318 | int |
@@ -320,9 +322,9 @@ TALER_MINT_DB_commit (PGconn *db_conn); | |||
320 | /** | 322 | /** |
321 | * Abort/rollback a transaction. | 323 | * Abort/rollback a transaction. |
322 | * | 324 | * |
323 | * @return #GNUNET_OK on success | 325 | * @param db_conn connection to use |
324 | */ | 326 | */ |
325 | int | 327 | void |
326 | TALER_MINT_DB_rollback (PGconn *db_conn); | 328 | TALER_MINT_DB_rollback (PGconn *db_conn); |
327 | 329 | ||
328 | 330 | ||