From c2a40aa83924fd88b9c1ec0084f87109b01a8324 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 28 Oct 2015 21:06:23 +0100 Subject: fix #4032: move wire deadline form wire details to advisory field in /deposit request --- src/util/wireformats.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/util/wireformats.c') diff --git a/src/util/wireformats.c b/src/util/wireformats.c index 5f9678526..594eaf426 100644 --- a/src/util/wireformats.c +++ b/src/util/wireformats.c @@ -322,7 +322,6 @@ validate_sepa (const json_t *wire) const char *iban; const char *name; const char *bic; - const char *edate; uint64_t r; const char *address; @@ -334,7 +333,6 @@ validate_sepa (const json_t *wire) "s:s " /* IBAN: iban */ "s:s " /* name: beneficiary name */ "s:s " /* BIC: beneficiary bank's BIC */ - "s:s " /* edate: transfer execution date */ "s:i " /* r: random 64-bit integer nounce */ "s?s " /* address: address of the beneficiary */ "}", @@ -342,7 +340,6 @@ validate_sepa (const json_t *wire) "IBAN", &iban, "name", &name, "bic", &bic, - "edate", &edate, "r", &r, "address", &address)); if (1 != validate_iban (iban)) -- cgit v1.2.3