reject wire deadline of 'never' (#7157)

This commit is contained in:
Christian Grothoff 2022-02-19 21:26:27 +01:00
parent bccdf7e452
commit bc3ec56373
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 10 additions and 1 deletions

@ -1 +1 @@
Subproject commit bb814747c82941a3cea6ec2d4c6961902995df17
Subproject commit fc7a860e2e3f8ae1d73c1c5d9c91964ac8c8a3ec

View File

@ -307,6 +307,15 @@ TEH_handler_deposit (struct MHD_Connection *connection,
TALER_EC_EXCHANGE_DEPOSIT_REFUND_DEADLINE_AFTER_WIRE_DEADLINE,
NULL);
}
if (GNUNET_TIME_absolute_is_never (deposit.wire_deadline.abs_time))
{
GNUNET_break_op (0);
GNUNET_JSON_parse_free (spec);
return TALER_MHD_reply_with_error (connection,
MHD_HTTP_BAD_REQUEST,
TALER_EC_EXCHANGE_DEPOSIT_WIRE_DEADLINE_IS_NEVER,
NULL);
}
deposit.receiver_wire_account = (char *) payto_uri;
TALER_payto_hash (payto_uri,
&dc.h_payto);