diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-02-07 15:02:49 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-02-07 15:02:49 +0100 |
commit | d67011e2b55dbd0e2158c4c144f5092e1593d70a (patch) | |
tree | ce793ac6c737bf6760062f085610966a257e5cae /src/include | |
parent | 38378f38d7c90c237bb8dbbe6fb4afb0c87f0c9f (diff) |
making mintdb tests pass again after API refactoring to remove total amount
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index d2cc3d76e..b65b3e4f7 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -606,7 +606,6 @@ typedef void * @param coin_pub which public key was this payment about * @param coin_value amount contributed by this coin in total (with fee) * @param coin_fee applicable fee for this coin - * @param transfer_value total amount of the wire transfer */ typedef void (*TALER_MINTDB_WireTransferDataCallback)(void *cls, @@ -616,8 +615,7 @@ typedef void uint64_t transaction_id, const struct TALER_CoinSpendPublicKeyP *coin_pub, const struct TALER_Amount *coin_value, - const struct TALER_Amount *coin_fee, - const struct TALER_Amount *transfer_value); + const struct TALER_Amount *coin_fee); /** |