rename
This commit is contained in:
parent
15c132829e
commit
f0254c6f5d
9 changed files with 140 additions and 137 deletions
19
src/denom_data.ml
Normal file
19
src/denom_data.ml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
open Crypto
|
||||
|
||||
type t = {
|
||||
pub: rsa_pub;
|
||||
priv: rsa_priv;
|
||||
section_name: string;
|
||||
value: Amount.t;
|
||||
stamp_start: Timestamp.t;
|
||||
stamp_expire_withdraw: Timestamp.t;
|
||||
stamp_expire_deposit: Timestamp.t;
|
||||
stamp_expire_legal: Timestamp.t;
|
||||
fee_withdraw: Amount.t;
|
||||
fee_deposit: Amount.t;
|
||||
fee_refresh: Amount.t;
|
||||
fee_refund: Amount.t;
|
||||
age_mask: int;
|
||||
h_pub: denomination_hash;
|
||||
master_sig: Bin_sig.DenominationKeyValidity.t option;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue