diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-01-14 15:57:36 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-01-14 15:57:36 +0100 |
commit | 2edee5ac4a4886e71db6e28314334cd24c6d3a55 (patch) | |
tree | 944c62dfd7dc9905a58e9888a2239403f4085cd6 /src/exchange-tools | |
parent | cba9f8614efab7805d736ac795f8edb970c6a301 (diff) |
refactor uri parsing logic, prepare for unit test
Diffstat (limited to 'src/exchange-tools')
-rw-r--r-- | src/exchange-tools/taler-exchange-keyup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c index 577823804..408012697 100644 --- a/src/exchange-tools/taler-exchange-keyup.c +++ b/src/exchange-tools/taler-exchange-keyup.c @@ -765,7 +765,7 @@ create_denomkey_issue (const struct CoinTypeParams *params, GNUNET_assert (NULL != dki->denom_priv.rsa_private_key); dki->denom_pub.rsa_public_key = GNUNET_CRYPTO_rsa_private_key_get_public ( - dki->denom_priv.rsa_private_key); + dki->denom_priv.rsa_private_key); GNUNET_CRYPTO_rsa_public_key_hash (dki->denom_pub.rsa_public_key, &dki->issue.properties.denom_hash); dki->issue.properties.master = master_public_key; |