ligo/src/proto_alpha/lib_delegate/client_daemon.mli

37 lines
1.1 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
2018-02-06 00:17:03 +04:00
(* Copyright (c) 2014 - 2018. *)
2016-09-08 21:13:10 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Proto_alpha
open Alpha_context
module Endorser : sig
val run:
#Proto_alpha.full ->
delay: int ->
?min_date: Time.t ->
public_key_hash list -> unit tzresult Lwt.t
end
module Baker : sig
val run:
#Proto_alpha.full ->
2018-06-19 11:28:35 +04:00
?threshold: Tez.tez ->
?max_priority: int ->
?min_date: Time.t ->
2018-06-14 14:16:17 +04:00
context_path: string ->
public_key_hash list -> unit tzresult Lwt.t
end
module Accuser : sig
val run:
#Proto_alpha.full ->
preserved_levels: int ->
unit tzresult Lwt.t
end