diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-03-04 11:47:22 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-03-04 11:47:22 +0100 |
commit | 6cc516427b06f1fd1a72ee1b75da909e1ed38166 (patch) | |
tree | d1329c6f8a5cb3aeed9fdad1b57db56c30bde09b /src/include | |
parent | a3013d9e3d26daf9f5df39046c6a9bc0dc45603b (diff) |
minor code clean up, renaming for consistency
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index 754ac1ef6..795c6d7be 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -766,9 +766,9 @@ struct TALER_EXCHANGEDB_RefreshSession /** - * Information about a /refresh/melt operation in a coin transaction history. + * Information about a /coins/$COIN_PUB/melt operation in a coin transaction history. */ -struct TALER_EXCHANGEDB_RefreshMeltListEntry +struct TALER_EXCHANGEDB_MeltListEntry { /** @@ -867,7 +867,7 @@ enum TALER_EXCHANGEDB_TransactionType /** * /refresh/melt operation. */ - TALER_EXCHANGEDB_TT_REFRESH_MELT = 1, + TALER_EXCHANGEDB_TT_MELT = 1, /** * /refund operation. @@ -927,9 +927,9 @@ struct TALER_EXCHANGEDB_TransactionList /** * Details if transaction was a /refresh/melt operation. - * (#TALER_EXCHANGEDB_TT_REFRESH_MELT) + * (#TALER_EXCHANGEDB_TT_MELT) */ - struct TALER_EXCHANGEDB_RefreshMeltListEntry *melt; + struct TALER_EXCHANGEDB_MeltListEntry *melt; /** * Details if transaction was a /refund operation. |