diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchange_service.h | 6 | ||||
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 2577aaf3..7e44698f 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -1535,6 +1535,12 @@ struct TALER_EXCHANGE_ReserveHistoryEntry */ enum TALER_WalletAccountMergeFlags flags; + /** + * True if the purse was actually merged, false + * if only the @e purse_fee was charged. + */ + bool merged; + } merge_details; } details; diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 8866e6f4..0bc53e1e 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -1144,6 +1144,12 @@ struct TALER_EXCHANGEDB_PurseMerge */ enum TALER_WalletAccountMergeFlags flags; + /** + * true if the purse was actually successfully merged, + * false if the @e purse_fee was charged but the + * @e amount was not credited to the reserve. + */ + bool merged; }; |