diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-03-28 17:27:08 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-03-28 17:27:08 +0100 |
commit | bb15fdd21532cf24772e7f57a0b997002c288911 (patch) | |
tree | 0f043058da02ba619a0efa49d38a9d1707a46de5 /src/include/taler_mintdb_plugin.h | |
parent | cf13997ffc638d8b99d23d22d84cc857cfe592cb (diff) |
fix use of struct TALER_RefreshMeltCoinAffirmationPS
Diffstat (limited to 'src/include/taler_mintdb_plugin.h')
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index 67ef3895..505e86bb 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -332,6 +332,17 @@ struct TALER_MINTDB_RefreshMelt */ struct TALER_Amount amount_with_fee; + /** + * Melting fee charged by the mint. This must match the Mint's + * denomination key's melting fee. If the client puts in an invalid + * melting fee (too high or too low) that does not match the Mint's + * denomination key, the melting operation is invalid and will be + * rejected by the mint. The @e amount_with_fee minus the @e + * melt_fee is the amount that will be credited to the melting + * session. + */ + struct TALER_Amount melt_fee; + }; |