diff options
| author | Christian Grothoff <christian@grothoff.org> | 2020-08-12 13:02:47 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2020-08-12 13:02:59 +0200 | 
| commit | 26f72f8572cf0d04cd0da718d34dad4ba479289c (patch) | |
| tree | cb17c8d2ef4d8313e1d2c9b2312541275b4b4487 /src/include | |
| parent | d4404cec14e632d94a4b3eca8b889c0c81f30b96 (diff) | |
fix refund handling: allow refund increases for the same coin
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/taler_exchangedb_plugin.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index f5e5dccc..4f27daef 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -665,6 +665,11 @@ struct TALER_EXCHANGEDB_DepositListEntry     */    struct TALER_Amount deposit_fee; +  /** +   * Has the deposit been wired? +   */ +  bool done; +  };  | 
