diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2022-03-26 10:46:37 +0100 |
---|---|---|
committer | Christian Grothoff <grothoff@gnunet.org> | 2022-03-26 10:47:10 +0100 |
commit | 098d572471786b035e2a8919275ad87a8ba2b720 (patch) | |
tree | a41493780e70705cc16c6585be0cdfdc62ba79d6 /src/exchangedb/irbt_callbacks.c | |
parent | 783e2ae424fdd338da142e2e7472ee86b27d4035 (diff) |
change sharding strategy for refund table
Diffstat (limited to 'src/exchangedb/irbt_callbacks.c')
-rw-r--r-- | src/exchangedb/irbt_callbacks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchangedb/irbt_callbacks.c b/src/exchangedb/irbt_callbacks.c index fd6e49b1d..835c0ea77 100644 --- a/src/exchangedb/irbt_callbacks.c +++ b/src/exchangedb/irbt_callbacks.c @@ -554,7 +554,7 @@ irbt_cb_table_refunds (struct PostgresClosure *pg, { struct GNUNET_PQ_QueryParam params[] = { GNUNET_PQ_query_param_uint64 (&td->serial), - GNUNET_PQ_query_param_uint64 (&td->details.refunds.shard), + GNUNET_PQ_query_param_auto_from_type (&td->details.refunds.coin_pub), GNUNET_PQ_query_param_auto_from_type (&td->details.refunds.merchant_sig), GNUNET_PQ_query_param_uint64 (&td->details.refunds.rtransaction_id), TALER_PQ_query_param_amount (&td->details.refunds.amount_with_fee), |