aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_insert_reserve_open_deposit.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_reserve_open_deposit.h
parent4a487b179c013886721c4aa06af9c75e9aad508c (diff)
downloadexchange-856b8e26c2b83ebce31eb35c9fc9f23641187be9.tar.xz
-more work on new DB logic
Diffstat (limited to 'src/exchangedb/pg_insert_reserve_open_deposit.h')
-rw-r--r--src/exchangedb/pg_insert_reserve_open_deposit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/exchangedb/pg_insert_reserve_open_deposit.h b/src/exchangedb/pg_insert_reserve_open_deposit.h
index 335fda52d..7eb2fe093 100644
--- a/src/exchangedb/pg_insert_reserve_open_deposit.h
+++ b/src/exchangedb/pg_insert_reserve_open_deposit.h
@@ -36,6 +36,7 @@
* @param known_coin_id ID of the coin in the known_coins table
* @param coin_total amount to be spent of the coin (including deposit fee)
* @param reserve_sig signature by the reserve affirming the open operation
+ * @param reserve_pub public key of the reserve being opened
* @param[out] insufficient_funds set to true if the coin's balance is insufficient, otherwise to false
* @return transaction status code, 0 if operation is already in the DB
*/
@@ -47,6 +48,7 @@ TEH_PG_insert_reserve_open_deposit (
uint64_t known_coin_id,
const struct TALER_Amount *coin_total,
const struct TALER_ReserveSignatureP *reserve_sig,
+ const struct TALER_ReservePublicKeyP *reserve_pub,
bool *insufficient_funds);
#endif