diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-06-11 13:46:27 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-06-11 13:46:27 +0200 |
commit | 357235618f34d3922c0f12792997f35c8db6fdb7 (patch) | |
tree | 333e33e0bcab8bd33e3b29002334a156bdd22a17 | |
parent | dc23f290eed04f22545e3146ab6a2fd56b02738f (diff) |
fixing #3821
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 3 | ||||
-rw-r--r-- | src/mintdb/plugin_mintdb_postgres.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index f5e61a7c3..74dd72b4c 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -740,7 +740,8 @@ struct TALER_MINTDB_Plugin * * @param cls the @e cls of this struct with the plugin-specific state * @param sesssion database connection to use - * @param h_blind hash of the blinded message to be signed + * @param h_blind hash of the blinded coin to be signed (will match + * `h_coin_envelope` in the @a collectable to be returned) * @param collectable corresponding collectable coin (blind signature) * if a coin is found * @return #GNUNET_SYSERR on internal error diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c index e4d0f4d50..e32c29edc 100644 --- a/src/mintdb/plugin_mintdb_postgres.c +++ b/src/mintdb/plugin_mintdb_postgres.c @@ -1288,7 +1288,8 @@ postgres_reserves_in_insert (void *cls, * * @param cls the `struct PostgresClosure` with the plugin-specific state * @param session database connection to use - * @param h_blind hash of the blinded message to be signed + * @param h_blind hash of the blinded coin to be signed (will match + * `h_coin_envelope` in the @a collectable to be returned) * @param collectable corresponding collectable coin (blind signature) * if a coin is found * @return #GNUNET_SYSERR on internal error |