ligo/src/lib_shell/chain.mli

51 lines
2.1 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
2018-02-06 00:17:03 +04:00
(* Copyright (c) 2014 - 2018. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
(** Tezos Shell Module - Manging the current head. *)
2018-02-16 04:26:24 +04:00
(** The genesis block of the chain. On a test chain,
the test protocol has been promoted as "main" protocol. *)
2018-02-16 04:26:24 +04:00
val genesis: State.Chain.t -> State.Block.t Lwt.t
2018-02-16 04:26:24 +04:00
(** The current head of the chain. *)
val head: State.Chain.t -> State.Block.t Lwt.t
val locator: State.Chain.t -> Block_locator.seed -> Block_locator.t Lwt.t
(** All the available chain data. *)
type data = {
2018-02-16 04:26:24 +04:00
current_head: State.Block.t ;
current_mempool: Mempool.t ;
live_blocks: Block_hash.Set.t ;
live_operations: Operation_hash.Set.t ;
test_chain: Chain_id.t option ;
}
(** Reading atomically all the chain data. *)
2018-02-16 04:26:24 +04:00
val data: State.Chain.t -> data Lwt.t
(** The current head and all the known (valid) alternate heads. *)
2018-02-16 04:26:24 +04:00
val known_heads: State.Chain.t -> State.Block.t list Lwt.t
2018-02-16 04:26:24 +04:00
(** Test whether a block belongs to the current mainchain. *)
val mem: State.Chain.t -> Block_hash.t -> bool Lwt.t
2018-02-16 04:26:24 +04:00
(** Record a block as the current head of the chain.
It returns the previous head. *)
2018-02-16 04:26:24 +04:00
val set_head: State.Chain.t -> State.Block.t -> State.Block.t Lwt.t
2018-02-16 04:26:24 +04:00
(** Atomically change the current head of the chain.
This returns [true] whenever the change succeeded, or [false]
when the current head os not equal to the [old] argument. *)
2017-11-14 04:24:25 +04:00
val test_and_set_head:
2018-02-16 04:26:24 +04:00
State.Chain.t -> old:State.Block.t -> State.Block.t -> bool Lwt.t
(** Restores the data about the current head at startup
(recomputes the sets of live blocks and operations). *)
2018-02-16 04:26:24 +04:00
val init_head: State.Chain.t -> unit Lwt.t