ligo/lib_node_shell/block_locator.mli

34 lines
1.4 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
2017-12-17 22:51:06 +04:00
type t = private raw
(** A type for sparse block locator (/à la/ Bitcoin) *)
2017-12-17 22:51:06 +04:00
and raw = Block_header.t * Block_hash.t list
(** Non private version of Block_store_locator.t for coercions *)
2017-12-17 22:51:06 +04:00
val raw: t -> raw
2017-12-17 22:51:06 +04:00
val encoding: t Data_encoding.t
val compute: Store.Block.store -> Block_hash.t -> int -> t Lwt.t
(** [compute block max_length] compute the sparse block locator for
the [block]. The locator contains at most [max_length] elements. *)
2017-12-17 22:51:06 +04:00
type validity =
| Unknown
| Known_valid
| Known_invalid
2017-12-17 22:51:06 +04:00
val unknown_prefix:
(Block_hash.t -> validity Lwt.t) -> t -> (Block_hash.t * t) option Lwt.t
(** [unknown_prefix validity locator] keeps only the unknown part of
the locator up to the first valid block. If there is no known valid
block or there is a known invalid one, None is returned. *)