diff options
Diffstat (limited to 'src/backenddb/pg_insert_account.c')
-rw-r--r-- | src/backenddb/pg_insert_account.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backenddb/pg_insert_account.c b/src/backenddb/pg_insert_account.c index 04b0637c..504c4da5 100644 --- a/src/backenddb/pg_insert_account.c +++ b/src/backenddb/pg_insert_account.c @@ -29,12 +29,11 @@ enum GNUNET_DB_QueryStatus TMH_PG_insert_account ( void *cls, - const char *id, const struct TALER_MERCHANTDB_AccountDetails *account_details) { struct PostgresClosure *pg = cls; struct GNUNET_PQ_QueryParam params[] = { - GNUNET_PQ_query_param_string (id), + GNUNET_PQ_query_param_string (account_details->instance_id), GNUNET_PQ_query_param_auto_from_type (&account_details->h_wire), GNUNET_PQ_query_param_auto_from_type (&account_details->salt), GNUNET_PQ_query_param_string (account_details->payto_uri), |