diff options
author | Fournier Nicolas <nicolas.fournier@ensta-paristech.fr> | 2015-06-10 14:59:21 +0200 |
---|---|---|
committer | Fournier Nicolas <nicolas.fournier@ensta-paristech.fr> | 2015-06-10 14:59:21 +0200 |
commit | ccc57fed01661bd1744b4fe100fadf0a0876eede (patch) | |
tree | 4fce753001b33b88cce4488df8adc92813d1b51e /src/include/taler_mintdb_plugin.h | |
parent | 7e990741dfbeadbf13a5cea7423ae088a39494d4 (diff) | |
parent | 29a8047d6fd7baa083a47bde4aa40c264c8fbb7f (diff) |
Merge branch 'master' of taler.net:/var/git/mint
Diffstat (limited to 'src/include/taler_mintdb_plugin.h')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index f6fa27db..acdb0d2f 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -985,7 +985,7 @@ struct TALER_MINTDB_Plugin * @param cls the @e cls of this struct with the plugin-specific state * @param sesssion database connection to use * @param session_hash hash to identify refresh session - * @param i set index (1st dimension), relating to #TALER_CNC_KAPPA + * @param cnc_index cut and choose index (1st dimension), relating to #TALER_CNC_KAPPA * @param num_newcoins coin index size of the @a commit_coins array * @param commit_coin array of coin commitments to store * @return #GNUNET_OK on success @@ -995,7 +995,7 @@ struct TALER_MINTDB_Plugin (*insert_refresh_commit_coins) (void *cls, struct TALER_MINTDB_Session *sesssion, const struct GNUNET_HashCode *session_hash, - unsigned int i, + unsigned int cnc_index, unsigned int num_newcoins, const struct TALER_MINTDB_RefreshCommitCoin *commit_coins); @@ -1007,7 +1007,7 @@ struct TALER_MINTDB_Plugin * @param cls the @e cls of this struct with the plugin-specific state * @param sesssion database connection to use * @param session_hash hash to identify refresh session - * @param i set index (1st dimension) + * @param cnc_index cut and choose set index (1st dimension) * @param num_coins size of the @a commit_coins array * @param[out] commit_coin array of coin commitments to return * @return #GNUNET_OK on success @@ -1018,7 +1018,7 @@ struct TALER_MINTDB_Plugin (*get_refresh_commit_coins) (void *cls, struct TALER_MINTDB_Session *sesssion, const struct GNUNET_HashCode *session_hash, - unsigned int i, + unsigned int cnc_index, unsigned int num_coins, struct TALER_MINTDB_RefreshCommitCoin *commit_coins); @@ -1030,7 +1030,7 @@ struct TALER_MINTDB_Plugin * @param cls the @e cls of this struct with the plugin-specific state * @param sesssion database connection to use * @param session_hash hash to identify refresh session - * @param i set index (1st dimension), relating to #TALER_CNC_KAPPA + * @param cnc_index cut and choose index (1st dimension), relating to #TALER_CNC_KAPPA * @param num_links size of the @a commit_link array * @param commit_links array of link information to store * @return #GNUNET_SYSERR on internal error, #GNUNET_OK on success @@ -1039,7 +1039,7 @@ struct TALER_MINTDB_Plugin (*insert_refresh_commit_links) (void *cls, struct TALER_MINTDB_Session *sesssion, const struct GNUNET_HashCode *session_hash, - unsigned int i, + unsigned int cnc_index, unsigned int num_links, const struct TALER_MINTDB_RefreshCommitLinkP *commit_links); @@ -1050,7 +1050,7 @@ struct TALER_MINTDB_Plugin * @param cls the @e cls of this struct with the plugin-specific state * @param sesssion database connection to use * @param session_hash hash to identify refresh session - * @param i set index (1st dimension) + * @param cnc_index cut and choose index (1st dimension) * @param num_links size of the @a links array to return * @param[out] links array link information to return * @return #GNUNET_SYSERR on internal error, @@ -1061,7 +1061,7 @@ struct TALER_MINTDB_Plugin (*get_refresh_commit_links) (void *cls, struct TALER_MINTDB_Session *sesssion, const struct GNUNET_HashCode *session_hash, - unsigned int i, + unsigned int cnc_index, unsigned int num_links, struct TALER_MINTDB_RefreshCommitLinkP *links); |