exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit b382287567cc83196d461dacf6bde4b4a098690e
parent d326c05e323501bc7917e0454d77d6e0e7938259
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat, 29 Aug 2020 01:32:15 +0200

memset only sets 1 byte

Diffstat:
Msrc/testing/test_bank_api_twisted.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/testing/test_bank_api_twisted.c b/src/testing/test_bank_api_twisted.c @@ -84,7 +84,7 @@ run (void *cls, { struct TALER_WireTransferIdentifierRawP wtid; - memset (&wtid, 0x5aff, sizeof (wtid)); + memset (&wtid, 0x5a, sizeof (wtid)); /* Route our commands through twister. */ struct TALER_BANK_AuthenticationData exchange_auth_twisted;