summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2022-03-24 17:33:29 +0100
committerChristian Grothoff <grothoff@gnunet.org>2022-03-24 17:33:29 +0100
commitb856d56d95f92eb9dedb0af49493350ea8ea2268 (patch)
tree3490ebf1e069fbe858a3f6cf97b18da8289840ae /src/include
parentc782dfe2aadfd06e47ed354c1fb389fecc715433 (diff)
downloadexchange-b856d56d95f92eb9dedb0af49493350ea8ea2268.tar.gz
exchange-b856d56d95f92eb9dedb0af49493350ea8ea2268.tar.bz2
exchange-b856d56d95f92eb9dedb0af49493350ea8ea2268.zip
rework deposits sharding, towards making aggregator faster (not necessarily done)
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_exchangedb_plugin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h
index cee509542..2a462aba6 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -3060,13 +3060,13 @@ struct TALER_EXCHANGEDB_Plugin
* returned by @e iterate_ready_deposits()
*
* @param cls the @e cls of this struct with the plugin-specific state
- * @param merchant_pub identifies the beneficiary of the deposit
+ * @param coin_pub identifies the coin of the deposit
* @param deposit_rowid identifies the deposit row to modify
* @return query result status
*/
enum GNUNET_DB_QueryStatus
(*mark_deposit_tiny)(void *cls,
- const struct TALER_MerchantPublicKeyP *merchant_pub,
+ const struct TALER_CoinSpendPublicKeyP *coin_pub,
uint64_t rowid);
@@ -3076,13 +3076,13 @@ struct TALER_EXCHANGEDB_Plugin
* @e iterate_ready_deposits() or @e iterate_matching_deposits().
*
* @param cls the @e cls of this struct with the plugin-specific state
- * @param merchant_pub identifies the beneficiary of the deposit
+ * @param coin_pub identifies the coin of the deposit
* @param deposit_rowid identifies the deposit row to modify
* @return query result status
*/
enum GNUNET_DB_QueryStatus
(*mark_deposit_done)(void *cls,
- const struct TALER_MerchantPublicKeyP *merchant_pub,
+ const struct TALER_CoinSpendPublicKeyP *coin_pub,
uint64_t rowid);