diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-01-08 23:36:09 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-01-08 23:36:09 +0100 |
commit | 260e287685680d97448920432b4673469a99a83f (patch) | |
tree | c06e99b6724f8ca2d2a815d1c95f80dd4a4bec53 /src/include | |
parent | db61628a9cffbfc4e33e0f0094039c71ef7b96be (diff) |
change wire_reference to be uint64_t always; more work on lrbt_callbacks
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_exchange_service.h | 7 | ||||
-rw-r--r-- | src/include/taler_exchangedb_plugin.h | 9 |
2 files changed, 3 insertions, 13 deletions
diff --git a/src/include/taler_exchange_service.h b/src/include/taler_exchange_service.h index 557348dd5..98af4f9f3 100644 --- a/src/include/taler_exchange_service.h +++ b/src/include/taler_exchange_service.h @@ -1027,18 +1027,13 @@ struct TALER_EXCHANGE_ReserveHistory /** * Information that uniquely identifies the wire transfer. */ - void *wire_reference; + uint64_t wire_reference; /** * When did the wire transfer happen? */ struct GNUNET_TIME_Absolute timestamp; - /** - * Number of bytes stored in @e wire_reference. - */ - size_t wire_reference_size; - } in_details; /** diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h index d713e52d6..e26a20960 100644 --- a/src/include/taler_exchangedb_plugin.h +++ b/src/include/taler_exchangedb_plugin.h @@ -186,12 +186,12 @@ struct TALER_EXCHANGEDB_TableData struct { struct GNUNET_HashCode h_blind_ev; - struct GNUNET_HashCode denom_pub_hash; // FIXME struct TALER_DenominationSignature denom_sig; struct TALER_ReserveSignatureP reserve_sig; struct GNUNET_TIME_Absolute execution_date; struct TALER_Amount amount_with_fee; uint64_t reserve_uuid; + uint64_t denominations_serial; } reserves_out; struct {} auditors; @@ -287,12 +287,7 @@ struct TALER_EXCHANGEDB_BankTransfer /** * Data uniquely identifying the wire transfer (wire transfer-type specific) */ - void *wire_reference; - - /** - * Number of bytes in @e wire_reference. - */ - size_t wire_reference_size; + uint64_t wire_reference; }; |