summaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_insert_close_request.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-10-03 23:54:12 +0200
committerChristian Grothoff <christian@grothoff.org>2022-10-03 23:54:12 +0200
commit856b8e26c2b83ebce31eb35c9fc9f23641187be9 (patch)
tree534951703f78a785702d0d2d82a43b425684ca60 /src/exchangedb/pg_insert_close_request.h
parent4a487b179c013886721c4aa06af9c75e9aad508c (diff)
downloadexchange-856b8e26c2b83ebce31eb35c9fc9f23641187be9.tar.gz
exchange-856b8e26c2b83ebce31eb35c9fc9f23641187be9.tar.bz2
exchange-856b8e26c2b83ebce31eb35c9fc9f23641187be9.zip
-more work on new DB logic
Diffstat (limited to 'src/exchangedb/pg_insert_close_request.h')
-rw-r--r--src/exchangedb/pg_insert_close_request.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchangedb/pg_insert_close_request.h b/src/exchangedb/pg_insert_close_request.h
index 09404094f..c014a10b9 100644
--- a/src/exchangedb/pg_insert_close_request.h
+++ b/src/exchangedb/pg_insert_close_request.h
@@ -34,8 +34,8 @@
* @param payto_uri where to wire the funds
* @param reserve_sig signature affiming that the account is to be closed
* @param request_timestamp time of the close request (client-side?)
+ * @param balance final balance in the reserve
* @param closing_fee closing fee to charge
- * @param[out] final_balance set to the final balance in the account that will be wired back to the origin account
* @return transaction status code
*/
enum GNUNET_DB_QueryStatus
@@ -45,8 +45,8 @@ TEH_PG_insert_close_request (
const char *payto_uri,
const struct TALER_ReserveSignatureP *reserve_sig,
struct GNUNET_TIME_Timestamp request_timestamp,
- const struct TALER_Amount *closing_fee,
- struct TALER_Amount *final_balance);
+ const struct TALER_Amount *balance,
+ const struct TALER_Amount *closing_fee);
#endif