summaryrefslogtreecommitdiff
path: root/src/util/wireformats.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-10-28 21:06:23 +0100
committerChristian Grothoff <christian@grothoff.org>2015-10-28 21:06:23 +0100
commitc2a40aa83924fd88b9c1ec0084f87109b01a8324 (patch)
tree18376f785528df6997502d51a6a361d4ebec29f6 /src/util/wireformats.c
parent3fd22d4b6fdcb470dcbd11b35b20c0ddcf771939 (diff)
downloadexchange-c2a40aa83924fd88b9c1ec0084f87109b01a8324.tar.gz
exchange-c2a40aa83924fd88b9c1ec0084f87109b01a8324.tar.bz2
exchange-c2a40aa83924fd88b9c1ec0084f87109b01a8324.zip
fix #4032: move wire deadline form wire details to advisory field in /deposit request
Diffstat (limited to 'src/util/wireformats.c')
-rw-r--r--src/util/wireformats.c3
1 files changed, 0 insertions, 3 deletions
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))