diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-06-11 13:02:57 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-06-11 13:02:57 +0200 |
commit | babeff1968b4076fa2f570af8c994727dd8fa09f (patch) | |
tree | a929ac352a8e71bd60cbf87ab4c2993707322812 /src/include/taler_mintdb_plugin.h | |
parent | 95f4cdc6df73955675ab07a98455bf9bf8c3e8e8 (diff) |
fix #3825
Diffstat (limited to 'src/include/taler_mintdb_plugin.h')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index 27bd46a52..d8644df8d 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -744,9 +744,9 @@ struct TALER_MINTDB_Plugin */ int (*get_withdraw_info) (void *cls, - struct TALER_MINTDB_Session *sesssion, - const struct GNUNET_HashCode *h_blind, - struct TALER_MINTDB_CollectableBlindcoin *collectable); + struct TALER_MINTDB_Session *sesssion, + const struct GNUNET_HashCode *h_blind, + struct TALER_MINTDB_CollectableBlindcoin *collectable); /** @@ -755,11 +755,6 @@ 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 which is (blindly) signed by the - * signature in @a collectable - * @param withdraw amount by which the reserve will be withdrawn with this - * transaction (based on the value of the denomination key - * used for the signature); coin value plus fee. * @param collectable corresponding collectable coin (blind signature) * if a coin is found * @return #GNUNET_SYSERR on internal error @@ -768,10 +763,8 @@ struct TALER_MINTDB_Plugin */ int (*insert_withdraw_info) (void *cls, - struct TALER_MINTDB_Session *sesssion, - const struct GNUNET_HashCode *h_blind, - struct TALER_Amount withdraw, - const struct TALER_MINTDB_CollectableBlindcoin *collectable); + struct TALER_MINTDB_Session *sesssion, + const struct TALER_MINTDB_CollectableBlindcoin *collectable); /** |