mark TODOs for #3887 in exchange-lib

This commit is contained in:
Christian Grothoff 2017-04-03 16:49:38 +02:00
parent 29a2f9b345
commit dbb2368403
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 18 additions and 0 deletions

View File

@ -234,6 +234,12 @@ TALER_EXCHANGE_verify_coin_history (const char *currency,
well-formendess check). */ well-formendess check). */
add = GNUNET_NO; add = GNUNET_NO;
} }
else if (0 == strcasecmp (type,
"PAYBACK"))
{
GNUNET_break (0); /* #3887 */
}
else else
{ {
/* signature not supported, new version on server? */ /* signature not supported, new version on server? */

View File

@ -256,6 +256,18 @@ parse_reserve_history (const json_t *history,
} }
/* end type==WITHDRAW */ /* end type==WITHDRAW */
} }
else if (0 == strcasecmp (type,
"PAYBACK"))
{
GNUNET_break (0); /* #3887 */
/* end type==PAYBACK */
}
else if (0 == strcasecmp (type,
"CLOSING"))
{
GNUNET_break (0); /* #3887 / #4956 */
/* end type==CLOSING */
}
else else
{ {
/* unexpected 'type', protocol incompatibility, complain! */ /* unexpected 'type', protocol incompatibility, complain! */