aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/plugin_exchangedb_postgres.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-10-31 18:12:54 +0100
committerChristian Grothoff <christian@grothoff.org>2021-10-31 18:12:54 +0100
commit783d07b4765aabee529f889b55f4fb5a27efaa44 (patch)
tree7d83bb5ae4035f304e476d0eeab0d261ee2f1980 /src/exchangedb/plugin_exchangedb_postgres.c
parentb1197c16a4f1034cd4d46902f6a20327ac7a52c4 (diff)
consistently distinguish blinded/unblinded denomination sigs
Diffstat (limited to 'src/exchangedb/plugin_exchangedb_postgres.c')
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index 85550e98..219ea064 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -6367,7 +6367,7 @@ free_link_data_list (void *cls,
{
next = ldl->next;
TALER_denom_pub_free (&ldl->denom_pub);
- TALER_denom_sig_free (&ldl->ev_sig);
+ TALER_blinded_denom_sig_free (&ldl->ev_sig);
GNUNET_free (ldl);
ldl = next;
}
@@ -6401,8 +6401,8 @@ add_ldl (void *cls,
&transfer_pub),
GNUNET_PQ_result_spec_auto_from_type ("link_sig",
&pos->orig_coin_link_sig),
- TALER_PQ_result_spec_denom_sig ("ev_sig",
- &pos->ev_sig),
+ TALER_PQ_result_spec_blinded_denom_sig ("ev_sig",
+ &pos->ev_sig),
TALER_PQ_result_spec_denom_pub ("denom_pub",
&pos->denom_pub),
GNUNET_PQ_result_spec_end