diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-10-13 18:52:59 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-10-13 18:52:59 +0200 |
commit | acbadd5c6e98282c4c4d568942b4c36c825c3dad (patch) | |
tree | 80560e70be10ff5a77265ef1b5e54bdf3998be62 /src/exchangedb | |
parent | 9e25e39b80657f2fa07be22d878b2d3d8c4b5b45 (diff) |
-modify C API to future-proof it for returning more details as required for KYC implementation
Diffstat (limited to 'src/exchangedb')
-rw-r--r-- | src/exchangedb/test_exchangedb.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/exchangedb/test_exchangedb.c b/src/exchangedb/test_exchangedb.c index b332cd6d2..655d2f53e 100644 --- a/src/exchangedb/test_exchangedb.c +++ b/src/exchangedb/test_exchangedb.c @@ -1303,12 +1303,16 @@ test_wire_out (const struct TALER_EXCHANGEDB_Deposit *deposit) putting in the WTID into the wire_out table */ { json_t *wire_out_account; + struct TALER_WireSalt salt; + memset (&salt, + 44, + sizeof (salt)); wire_out_account = GNUNET_JSON_PACK ( GNUNET_JSON_pack_string ("payto_uri", "payto://x-taler-bank/localhost:8080/1"), - GNUNET_JSON_pack_string ("salt", - "this-is-my-salt")); + GNUNET_JSON_pack_data_auto ("salt", + &salt)); if (GNUNET_DB_STATUS_SUCCESS_ONE_RESULT != plugin->store_wire_transfer_out (plugin->cls, wire_out_date, @@ -1513,15 +1517,19 @@ run (void *cls) uint64_t rr; enum GNUNET_DB_QueryStatus qs; struct GNUNET_TIME_Absolute now; + struct TALER_WireSalt salt; dkp = NULL; rh = NULL; deposit.coin.denom_sig.rsa_signature = NULL; + memset (&salt, + 45, + sizeof (salt)); wire = GNUNET_JSON_PACK ( GNUNET_JSON_pack_string ("payto_uri", "payto://iban/DE67830654080004822650?receiver-name=Test"), - GNUNET_JSON_pack_string ("salt", - "this-is-a-salt-value")); + GNUNET_JSON_pack_data_auto ("salt", + &salt)); ZR_BLK (&cbc); ZR_BLK (&cbc2); if (NULL == |