diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-06-05 20:06:36 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-06-05 20:06:36 +0200 |
commit | 7f10f370e2a3c64e49aaa262497a5a7da20c2db6 (patch) | |
tree | d740ab134066aaa0c6b52439b3f64c0c0c70417c /src/backenddb/pg_update_instance.c | |
parent | 319888a23889cda7db2952fb96780c682fbd2950 (diff) |
remove legacy user_type
Diffstat (limited to 'src/backenddb/pg_update_instance.c')
-rw-r--r-- | src/backenddb/pg_update_instance.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backenddb/pg_update_instance.c b/src/backenddb/pg_update_instance.c index 228e2031..91026638 100644 --- a/src/backenddb/pg_update_instance.c +++ b/src/backenddb/pg_update_instance.c @@ -32,7 +32,6 @@ TMH_PG_update_instance (void *cls, const struct TALER_MERCHANTDB_InstanceSettings *is) { struct PostgresClosure *pg = cls; - uint32_t ut32 = (uint32_t) is->ut; struct GNUNET_PQ_QueryParam params[] = { GNUNET_PQ_query_param_string (is->id), GNUNET_PQ_query_param_string (is->name), @@ -52,7 +51,6 @@ TMH_PG_update_instance (void *cls, (NULL == is->logo) ? GNUNET_PQ_query_param_null () : GNUNET_PQ_query_param_string (is->logo), - GNUNET_PQ_query_param_uint32 (&ut32), GNUNET_PQ_query_param_end }; @@ -69,7 +67,6 @@ TMH_PG_update_instance (void *cls, ",website=$8" ",email=$9" ",logo=$10" - ",user_type=$11" " WHERE merchant_id=$1"); return GNUNET_PQ_eval_prepared_non_select (pg->conn, "update_instance", |