diff options
Diffstat (limited to 'src/auditordb')
| -rw-r--r-- | src/auditordb/plugin_auditordb_postgres.c | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c index 3434dded..0d4eea58 100644 --- a/src/auditordb/plugin_auditordb_postgres.c +++ b/src/auditordb/plugin_auditordb_postgres.c @@ -998,7 +998,7 @@ struct ExchangeInfoContext   *   * @param cls closure of type `struct ExchangeInfoContext *`   * @param result the postgres result - * @param num_result the number of results in @a result + * @param num_results the number of results in @a result   */  static void  exchange_info_cb (void *cls, @@ -1040,8 +1040,8 @@ exchange_info_cb (void *cls,   *   * @param cls the @e cls of this struct with the plugin-specific state   * @param session connection to the database - * @param master_pub master public key of the exchange - * @param exchange_url public (base) URL of the API of the exchange + * @param cb function to call with the results + * @param cb_cls closure for @a cb   * @return query result status   */  static enum GNUNET_DB_QueryStatus @@ -1176,7 +1176,7 @@ struct DepositConfirmationContext   *   * @param cls closure of type `struct DepositConfirmationContext *`   * @param result the postgres result - * @param num_result the number of results in @a result + * @param num_results the number of results in @a result   */  static void  deposit_confirmation_cb (void *cls, @@ -1240,7 +1240,7 @@ deposit_confirmation_cb (void *cls,   *   * @param cls the @e cls of this struct with the plugin-specific state   * @param session connection to the database - * @param master_pub for which exchange do we want to get deposit confirmations + * @param master_public_key for which exchange do we want to get deposit confirmations   * @param start_id row/serial ID where to start the iteration (0 from   *                  the start, exclusive, i.e. serial_ids must start from 1)   * @param cb function to call with results @@ -1373,7 +1373,7 @@ struct DenominationInfoContext   *   * @param cls closure of type `struct DenominationInfoContext *`   * @param result the postgres result - * @param num_result the number of results in @a result + * @param num_results the number of results in @a result   */  static void  denomination_info_cb (void *cls, @@ -2844,7 +2844,7 @@ struct HistoricDenomRevenueContext   *   * @param cls closure of type `struct HistoricRevenueContext *`   * @param result the postgres result - * @param num_result the number of results in @a result + * @param num_results the number of results in @a result   */  static void  historic_denom_revenue_cb (void *cls, @@ -3005,7 +3005,7 @@ struct HistoricReserveRevenueContext   *   * @param cls closure of type `struct HistoricRevenueContext *`   * @param result the postgres result - * @param num_result the number of results in @a result + * @param num_results the number of results in @a result   */  static void  historic_reserve_revenue_cb (void *cls, | 
