fix Timestamp typo

This commit is contained in:
swrup 2025-10-09 02:38:34 +02:00
parent a5af1bf99f
commit ece60632ac

View file

@ -34,8 +34,8 @@ module TimeAbsolute = MK_TIME ()
module TimeAbsoluteNBO = MK_TIME_NBO () module TimeAbsoluteNBO = MK_TIME_NBO ()
module TimeRelative = MK_TIME () module TimeRelative = MK_TIME ()
module TimeRelativeNBO = MK_TIME_NBO () module TimeRelativeNBO = MK_TIME_NBO ()
module TimeTimestamp = MK_TIME () module Timestamp = MK_TIME ()
module TimeTimestampNBO = MK_TIME_NBO () module TimestampNBO = MK_TIME_NBO ()
(* -- Cryptographic primitives -- *) (* -- Cryptographic primitives -- *)
@ -920,7 +920,7 @@ end
module MasterAmlOfficerStatusPS = struct module MasterAmlOfficerStatusPS = struct
(* purpose.purpose = TALER_SIGNATURE_MASTER_AML_KEY *) (* purpose.purpose = TALER_SIGNATURE_MASTER_AML_KEY *)
type t = { type t = {
change_date: TimeTimestampNBO.t; change_date: TimestampNBO.t;
officer_pub: AmlOfficerPublicKeyP.t; officer_pub: AmlOfficerPublicKeyP.t;
h_officer_name: HashCode.t; h_officer_name: HashCode.t;
is_active: int; is_active: int;
@ -931,7 +931,7 @@ module AmlDecisionPS = struct
(* purpose.purpose = TALER_SIGNATURE_AML_DECISION *) (* purpose.purpose = TALER_SIGNATURE_AML_DECISION *)
type t = { type t = {
h_justification: HashCode.t; h_justification: HashCode.t;
decision_time: TimeTimestampNBO.t; decision_time: TimestampNBO.t;
new_threshold: AmountNBO.t; new_threshold: AmountNBO.t;
h_payto: NormalizedPaytoHash.t; h_payto: NormalizedPaytoHash.t;
h_kyc_requirements: HashCode.t; h_kyc_requirements: HashCode.t;
@ -943,8 +943,8 @@ module PartnerConfigurationPS = struct
(* purpose.purpose = TALER_SIGNATURE_MASTER_PARNTER_DETAILS *) (* purpose.purpose = TALER_SIGNATURE_MASTER_PARNTER_DETAILS *)
type t = { type t = {
partner_pub: MasterPublicKeyP.t; partner_pub: MasterPublicKeyP.t;
start_date: TimeTimestampNBO.t; start_date: TimestampNBO.t;
end_date: TimeTimestampNBO.t; end_date: TimestampNBO.t;
wad_frequency: TimeRelativeNBO.t; wad_frequency: TimeRelativeNBO.t;
wad_fee: AmountNBO.t; wad_fee: AmountNBO.t;
h_url: HashCode.t; h_url: HashCode.t;
@ -955,8 +955,8 @@ module ReserveOpenPS = struct
(* purpose.purpose = TALER_SIGNATURE_WALLET_RESERVE_OPEN *) (* purpose.purpose = TALER_SIGNATURE_WALLET_RESERVE_OPEN *)
type t = { type t = {
reserve_payment: AmountNBO.t; reserve_payment: AmountNBO.t;
request_timestamp: TimeTimestampNBO.t; request_timestamp: TimestampNBO.t;
reserve_expiration: TimeTimestampNBO.t; reserve_expiration: TimestampNBO.t;
purse_limit: int; purse_limit: int;
} }
end end
@ -964,7 +964,7 @@ end
module ReserveClosePS = struct module ReserveClosePS = struct
(* purpose.purpose = TALER_SIGNATURE_WALLET_RESERVE_CLOSE *) (* purpose.purpose = TALER_SIGNATURE_WALLET_RESERVE_CLOSE *)
type t = { type t = {
request_timestamp: TimeTimestampNBO.t; request_timestamp: TimestampNBO.t;
target_account_h_payto: FullPaytoHash.t; target_account_h_payto: FullPaytoHash.t;
} }
end end
@ -972,7 +972,7 @@ end
module ReserveAttestRequestPS = struct module ReserveAttestRequestPS = struct
(* purpose.purpose = TALER_SIGNATURE_WALLET_ATTEST_REQUEST *) (* purpose.purpose = TALER_SIGNATURE_WALLET_ATTEST_REQUEST *)
type t = { type t = {
request_timestamp: TimeTimestampNBO.t; request_timestamp: TimestampNBO.t;
h_details: HashCode.t; h_details: HashCode.t;
} }
end end
@ -980,8 +980,8 @@ end
module ExchangeAttestPS = struct module ExchangeAttestPS = struct
(* purpose.purpose = TALER_SIGNATURE_EXCHANGE_RESERVE_ATTEST_DETAILS *) (* purpose.purpose = TALER_SIGNATURE_EXCHANGE_RESERVE_ATTEST_DETAILS *)
type t = { type t = {
attest_timestamp: TimeTimestampNBO.t; attest_timestamp: TimestampNBO.t;
expiration_time: TimeTimestampNBO.t; expiration_time: TimestampNBO.t;
reserve_pub: ReservePublicKeyP.t; reserve_pub: ReservePublicKeyP.t;
h_attributes: HashCode.t; h_attributes: HashCode.t;
} }