diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-23 14:15:18 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-23 14:16:03 +0200 |
commit | 9c21e22da9e2f411cfc3d2c900f4aabe2e3a88f1 (patch) | |
tree | 0a5bea2d721f5af7597d7930bf7a4b1fa7f042b3 /src/include | |
parent | a70c64d085bddfae6ebc07ebd9ceb796fbf03e62 (diff) |
split off taler-helper-auditor-transfer to reduce mixing up different things in helpers; also clean up its code
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_auditordb_plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/taler_auditordb_plugin.h b/src/include/taler_auditordb_plugin.h index 430fad9d0..1dd26a8ce 100644 --- a/src/include/taler_auditordb_plugin.h +++ b/src/include/taler_auditordb_plugin.h @@ -781,7 +781,7 @@ struct TALER_AUDITORDB_WireFormatInconsistency { uint64_t row_id; struct TALER_Amount amount; - int64_t wire_offset; + uint64_t wire_offset; char *diagnostic; bool suppressed; @@ -791,7 +791,8 @@ struct TALER_AUDITORDB_WireOutInconsistency { uint64_t row_id; char *destination_account; - char *diagnostic; // FIXME: new + char *diagnostic; + uint64_t wire_out_row_id; struct TALER_Amount expected; struct TALER_Amount claimed; bool suppressed; @@ -951,7 +952,6 @@ typedef enum GNUNET_GenericReturnValue typedef enum GNUNET_GenericReturnValue (*TALER_AUDITORDB_WireOutInconsistencyCallback)( void *cls, - uint64_t serial_id, const struct TALER_AUDITORDB_WireOutInconsistency *dc); typedef enum GNUNET_GenericReturnValue |