summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2023-12-09 12:47:04 +0100
committerÖzgür Kesim <oec-taler@kesim.org>2023-12-09 12:47:04 +0100
commit5c21cd8d9d9512365334eaf8ea7a5e3dc0f2cbb1 (patch)
tree2f85e4b189f55c7cb414797d209246f9ec0c8cc9 /src/util
parentfb84cf969877d5b23d831b30cbaac5ddfa7d3017 (diff)
downloadexchange-5c21cd8d9d9512365334eaf8ea7a5e3dc0f2cbb1.tar.gz
exchange-5c21cd8d9d9512365334eaf8ea7a5e3dc0f2cbb1.tar.bz2
exchange-5c21cd8d9d9512365334eaf8ea7a5e3dc0f2cbb1.zip
use local variable as accumulator in batch-deposit
Diffstat (limited to 'src/util')
-rw-r--r--src/util/exchange_signatures.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/exchange_signatures.c b/src/util/exchange_signatures.c
index bc5fe439f..aaefb5cec 100644
--- a/src/util/exchange_signatures.c
+++ b/src/util/exchange_signatures.c
@@ -120,7 +120,8 @@ TALER_exchange_online_deposit_confirmation_sign (
.exchange_timestamp = GNUNET_TIME_timestamp_hton (exchange_timestamp),
.wire_deadline = GNUNET_TIME_timestamp_hton (wire_deadline),
.refund_deadline = GNUNET_TIME_timestamp_hton (refund_deadline),
- .merchant_pub = *merchant_pub
+ .merchant_pub = *merchant_pub,
+ .h_policy = {{{0}}}
};
struct GNUNET_HashContext *hc;