2017-11-11 06:34:12 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
type t
|
|
|
|
|
2017-12-17 22:51:06 +04:00
|
|
|
type error += Invalid_locator of P2p.Peer_id.t * Block_locator.t
|
|
|
|
|
2017-11-11 06:34:12 +04:00
|
|
|
val create:
|
|
|
|
?notify_new_block: (State.Block.t -> unit) ->
|
2017-11-13 17:25:02 +04:00
|
|
|
block_header_timeout:float ->
|
|
|
|
block_operations_timeout: float ->
|
2017-11-11 06:34:12 +04:00
|
|
|
Block_validator.t ->
|
|
|
|
P2p.Peer_id.t -> Distributed_db.net_db ->
|
|
|
|
Block_locator.t -> t
|
|
|
|
|
|
|
|
val wait: t -> unit tzresult Lwt.t
|
|
|
|
|
|
|
|
val cancel: t -> unit Lwt.t
|