exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 2afadf85abaf9c97475c18994c11b8859ef27288
parent 53613e2fe786575a5efa9890ccf39e85005e47f5
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu,  2 Jan 2025 10:53:24 +0100

-try to make spell checker happy

Diffstat:
Msrc/exchangedb/exchangedb_accounts.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/exchangedb/exchangedb_accounts.c b/src/exchangedb/exchangedb_accounts.c @@ -177,7 +177,7 @@ add_account_cb (void *cls, char *method; bool debit; bool credit; - struct TALER_FullPayto fpt; + struct TALER_FullPayto full_payto; char *err; if (0 != strncasecmp (section, @@ -209,9 +209,9 @@ add_account_cb (void *cls, "PAYTO_URI"); return; } - fpt.full_payto = payto_uri; + full_payto.full_payto = payto_uri; method = TALER_payto_get_method (payto_uri); - if ( (NULL != (err = TALER_payto_validate (fpt))) || + if ( (NULL != (err = TALER_payto_validate (full_payto))) || (NULL == method) ) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, @@ -226,14 +226,14 @@ add_account_cb (void *cls, GNUNET_assert (NULL != method); wa = GNUNET_new (struct WireAccount); wa->section_name = GNUNET_strdup (section); - wa->payto_uri = fpt; + wa->payto_uri = full_payto; wa->method = method; wa->ai.debit_enabled = debit; wa->ai.credit_enabled = credit; wa->ai.auth = NULL; wa->ai.section_name = wa->section_name; wa->ai.method = wa->method; - wa->ai.payto_uri = fpt; + wa->ai.payto_uri = full_payto; if (lc->load_auth_data) { char *csn;