diff options
-rw-r--r-- | src/exchange-lib/test_exchange_api.c | 8 | ||||
-rw-r--r-- | src/exchangedb/plugin_exchangedb_postgres.c | 1 | ||||
-rw-r--r-- | src/include/taler_signatures.h | 5 |
3 files changed, 10 insertions, 4 deletions
diff --git a/src/exchange-lib/test_exchange_api.c b/src/exchange-lib/test_exchange_api.c index 6bd4358e..80007c66 100644 --- a/src/exchange-lib/test_exchange_api.c +++ b/src/exchange-lib/test_exchange_api.c @@ -924,7 +924,7 @@ reserve_status_cb (void *cls, { if (GNUNET_OK != compare_reserve_withdraw_history (&history[j], - rel)) + rel)) { GNUNET_break (0); fail (is); @@ -1782,9 +1782,9 @@ interpreter_run (void *cls) &reserve_pub.eddsa_pub); cmd->details.reserve_status.wsh = TALER_EXCHANGE_reserve_status (exchange, - &reserve_pub, - &reserve_status_cb, - is); + &reserve_pub, + &reserve_status_cb, + is); return; case OC_WITHDRAW_SIGN: GNUNET_assert (NULL != diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c index 1eaafe3a..8e82917f 100644 --- a/src/exchangedb/plugin_exchangedb_postgres.c +++ b/src/exchangedb/plugin_exchangedb_postgres.c @@ -20,6 +20,7 @@ * @author Florian Dold * @author Christian Grothoff * @author Sree Harsha Totakura + * @author Marcello Stanisci */ #include "platform.h" #include "taler_pq_lib.h" diff --git a/src/include/taler_signatures.h b/src/include/taler_signatures.h index dae730d0..c187275a 100644 --- a/src/include/taler_signatures.h +++ b/src/include/taler_signatures.h @@ -296,6 +296,11 @@ struct TALER_DepositRequestPS struct GNUNET_TIME_AbsoluteNBO refund_deadline; /** + * Deadline for the customer to pay for h_contract + */ + struct GNUNET_TIME_AbsoluteNBO pay_deadline; + + /** * Merchant-generated transaction ID to detect duplicate * transactions. The merchant must communicate a merchant-unique ID * to the customer for each transaction. Note that different coins |