ligo/src/lib_shell/validator.mli

48 lines
1.6 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. *)
(* *)
(**************************************************************************)
(** 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 ->
Peer_validator.limits ->
Block_validator.limits ->
Prevalidator.limits ->
2018-02-16 04:26:24 +04:00
Chain_validator.limits ->
t Lwt.t
2017-09-29 20:43:13 +04:00
val shutdown: t -> unit Lwt.t
2016-09-08 21:13:10 +04:00
2018-02-16 04:26:24 +04:00
(** Start the validation scheduler of a given chain. *)
val activate:
t ->
?max_child_ttl:int ->
2018-02-16 04:26:24 +04:00
State.Chain.t -> Chain_validator.t Lwt.t
2016-09-08 21:13:10 +04:00
2018-02-16 04:26:24 +04:00
val get: t -> Chain_id.t -> Chain_validator.t tzresult Lwt.t
val get_exn: t -> Chain_id.t -> Chain_validator.t Lwt.t
(** Force the validation of a block. *)
val validate_block:
t ->
?force:bool ->
2018-02-16 04:26:24 +04:00
?chain_id:Chain_id.t ->
MBytes.t -> Operation.t list list ->
(Block_hash.t * State.Block.t option tzresult Lwt.t) tzresult Lwt.t
2018-02-16 04:26:24 +04:00
(** Monitor all the valid block (for all activate chains). *)
val watcher: t -> State.Block.t Lwt_stream.t * Lwt_watcher.stopper
val inject_operation:
t ->
2018-02-16 04:26:24 +04:00
?chain_id:Chain_id.t ->
Operation.t -> unit tzresult Lwt.t