diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-04-08 18:18:20 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-04-08 18:18:20 +0200 |
commit | 50bc862a684f8c5d4e3ece2712322bf078fe604f (patch) | |
tree | 54d4facce006a8437c58e64e7f2106a3487cba83 /src/testing/testing_api_cmd_deposit.c | |
parent | b22ec7570e830a3f71ed7c33b23879b2c3385387 (diff) |
adapt to new GNUnet sign API (#6164)
Diffstat (limited to 'src/testing/testing_api_cmd_deposit.c')
-rw-r--r-- | src/testing/testing_api_cmd_deposit.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/testing/testing_api_cmd_deposit.c b/src/testing/testing_api_cmd_deposit.c index c11c49ac6..c251aada3 100644 --- a/src/testing/testing_api_cmd_deposit.c +++ b/src/testing/testing_api_cmd_deposit.c @@ -409,10 +409,9 @@ deposit_run (void *cls, &denom_pub->fee_deposit); dr.merchant = merchant_pub; dr.coin_pub = coin_pub; - GNUNET_assert (GNUNET_OK == - GNUNET_CRYPTO_eddsa_sign (&coin_priv->eddsa_priv, - &dr.purpose, - &coin_sig.eddsa_signature)); + GNUNET_CRYPTO_eddsa_sign (&coin_priv->eddsa_priv, + &dr, + &coin_sig.eddsa_signature); } ds->dh = TALER_EXCHANGE_deposit (is->exchange, &ds->amount, |