ligo/lib_node_shell/validator.mli

45 lines
1.5 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. *)
(* *)
(**************************************************************************)
(** Tezos Shell - Main entry point of the validation scheduler. *)
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
(** Start the validation scheduler of a given network. *)
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
(** Force the validation of a block. *)
val validate_block:
t ->
?force:bool ->
?net_id:Net_id.t ->
MBytes.t -> Operation.t list list ->
(Block_hash.t * State.Block.t tzresult Lwt.t) tzresult Lwt.t
(** Monitor all the valid block (for all activate networks). *)
val watcher: t -> State.Block.t Lwt_stream.t * Lwt_watcher.stopper
val inject_operation:
t ->
?force:bool ->
?net_id:Net_id.t ->
Operation.t -> unit tzresult Lwt.t