merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit f032988cdb64f3e6424ff60321245979d2603d24
parent db5b27048897329157cbec8fdf3ee2482cfca161
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Wed, 19 Mar 2025 01:48:01 +0100

fix #9628

Diffstat:
Msrc/backend/taler-merchant-depositcheck.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backend/taler-merchant-depositcheck.c b/src/backend/taler-merchant-depositcheck.c @@ -608,8 +608,7 @@ pending_deposits_cb ( const struct TALER_Amount *deposit_fee, const struct TALER_CoinSpendPublicKeyP *coin_pub) { - struct ExchangeInteraction *w - = GNUNET_new (struct ExchangeInteraction); + struct ExchangeInteraction *w; (void) cls; if (GNUNET_TIME_absolute_is_future (wire_deadline)) @@ -620,6 +619,7 @@ pending_deposits_cb ( run_at (wire_deadline); return; } + w = GNUNET_new (struct ExchangeInteraction); w->deposit_serial = deposit_serial; w->wire_deadline = wire_deadline; w->retry_backoff = GNUNET_TIME_STD_BACKOFF (retry_backoff);