diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-24 17:55:48 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-24 17:55:48 +0200 |
commit | f7620b28be47a04cb10e155caad0e147e174f1d2 (patch) | |
tree | 2ead4158ac84413ad3af88592285977ecf82aef6 /src/exchangedb/pg_lookup_transfer_by_deposit.h | |
parent | c98b47d13eb5172d39b00706bff1264a142ce28d (diff) |
fix test regressions
Diffstat (limited to 'src/exchangedb/pg_lookup_transfer_by_deposit.h')
-rw-r--r-- | src/exchangedb/pg_lookup_transfer_by_deposit.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/exchangedb/pg_lookup_transfer_by_deposit.h b/src/exchangedb/pg_lookup_transfer_by_deposit.h index ff5554dcc..2a5340d4f 100644 --- a/src/exchangedb/pg_lookup_transfer_by_deposit.h +++ b/src/exchangedb/pg_lookup_transfer_by_deposit.h @@ -42,6 +42,7 @@ * @param[out] amount_with_fee set to the total deposited amount * @param[out] deposit_fee set to how much the exchange did charge for the deposit * @param[out] kyc set to the kyc status of the receiver (if @a pending) + * @param[out] account_pub set to public key that is authorized to start the KYC process; unchanged if no such key is known * @return transaction status code */ enum GNUNET_DB_QueryStatus @@ -56,6 +57,7 @@ TEH_PG_lookup_transfer_by_deposit ( struct GNUNET_TIME_Timestamp *exec_time, struct TALER_Amount *amount_with_fee, struct TALER_Amount *deposit_fee, - struct TALER_EXCHANGEDB_KycStatus *kyc); + struct TALER_EXCHANGEDB_KycStatus *kyc, + union TALER_AccountPublicKeyP *account_pub); #endif |