ligo/src/node/shell/validator.mli

33 lines
1.2 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
2016-09-08 21:13:10 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
2017-09-29 20:43:13 +04:00
type t
2016-09-08 21:13:10 +04:00
val create: State.t -> Distributed_db.t -> Net_validator.timeout -> t
2017-09-29 20:43:13 +04:00
val shutdown: t -> unit Lwt.t
2016-09-08 21:13:10 +04:00
val activate:
t ->
?bootstrap_threshold:int ->
?max_child_ttl:int ->
State.Net.t -> Net_validator.t Lwt.t
2016-09-08 21:13:10 +04:00
type error +=
| Inactive_network of Net_id.t
val get: t -> Net_id.t -> Net_validator.t tzresult Lwt.t
val get_exn: t -> Net_id.t -> Net_validator.t Lwt.t
val inject_block:
t ->
?force:bool ->
MBytes.t -> Operation.t list list ->
(Block_hash.t * State.Block.t tzresult Lwt.t) tzresult Lwt.t
val watcher: t -> State.Block.t Lwt_stream.t * Watcher.stopper