diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-09-15 20:27:04 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-09-15 20:27:04 +0200 |
commit | eeefb19aa0ce4e67fcca08fdfe5ae94f85013540 (patch) | |
tree | b9775185993b06d1f969d69ae5d261565fd4e135 /src/include | |
parent | 556e2f32041907aff139718433cefc4e42e1d691 (diff) |
fix test 24
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_auditordb_plugin.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/include/taler_auditordb_plugin.h b/src/include/taler_auditordb_plugin.h index 9168e5201..b71ba3d13 100644 --- a/src/include/taler_auditordb_plugin.h +++ b/src/include/taler_auditordb_plugin.h @@ -160,11 +160,6 @@ struct TALER_AUDITORDB_DepositConfirmation struct TALER_Amount total_without_fee; /** - * Length of the @e coin_pubs and @e coin_sigs arrays. - */ - unsigned int num_coins; - - /** * Array of the coin public keys involved in the * batch deposit operation. */ @@ -197,6 +192,18 @@ struct TALER_AUDITORDB_DepositConfirmation */ struct TALER_MasterSignatureP master_sig; + /** + * Row of this entry in the auditor database. + */ + uint64_t row_id; + + /** + * Length of the @e coin_pubs and @e coin_sigs arrays. + */ + unsigned int num_coins; + + bool suppressed; + }; // MARK: CRUD @@ -817,7 +824,6 @@ struct TALER_AUDITORDB_ReserveNotClosedInconsistency typedef enum GNUNET_GenericReturnValue (*TALER_AUDITORDB_DepositConfirmationCallback)( void *cls, - uint64_t serial_id, const struct TALER_AUDITORDB_DepositConfirmation *dc); |