This commit is contained in:
swrup 2025-11-15 22:20:18 +01:00
parent 4f2e77f27f
commit 0722c02946
3 changed files with 237 additions and 0 deletions

7
include/config_types.ml Normal file
View file

@ -0,0 +1,7 @@
module type Exchangedb = sig
val idle_reserve_expiration_time : Ptime.Span.t
val legal_reserve_expiration_time : Ptime.Span.t
val aggregator_shift : Ptime.Span.t
val default_purse_limit : int
val max_aml_program_runtime : Ptime.Span.t
end