diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-12-19 20:36:05 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-12-19 20:36:05 +0100 |
commit | 6ed1fc5f73fb4a348a846bb483414a0ba75dfa61 (patch) | |
tree | a81e09b55f7bc2ab60952cf7527e9a877b724737 /src/util | |
parent | 304fc9fb1fa908158c2795a69be102598af272cb (diff) |
use comma instead of space as we do elsewhere
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/wireformats.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/util/wireformats.c b/src/util/wireformats.c index 594eaf426..4e9281899 100644 --- a/src/util/wireformats.c +++ b/src/util/wireformats.c @@ -329,12 +329,12 @@ validate_sepa (const json_t *wire) ((json_t *) wire, &error, JSON_STRICT, "{" - "s:s " /* TYPE: sepa */ - "s:s " /* IBAN: iban */ - "s:s " /* name: beneficiary name */ - "s:s " /* BIC: beneficiary bank's BIC */ - "s:i " /* r: random 64-bit integer nounce */ - "s?s " /* address: address of the beneficiary */ + "s:s," /* TYPE: sepa */ + "s:s," /* IBAN: iban */ + "s:s," /* name: beneficiary name */ + "s:s," /* BIC: beneficiary bank's BIC */ + "s:i," /* r: random 64-bit integer nounce */ + "s?s" /* address: address of the beneficiary */ "}", "type", &type, "IBAN", &iban, |