ligo/lib_embedded_client_alpha/client_baking_blocks.mli

39 lines
1.3 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. *)
(* *)
(**************************************************************************)
type block_info = {
hash: Block_hash.t ;
net_id: Net_id.t ;
2016-09-08 21:13:10 +04:00
predecessor: Block_hash.t ;
fitness: MBytes.t list ;
timestamp: Time.t ;
protocol: Protocol_hash.t ;
2016-09-08 21:13:10 +04:00
level: Level.t ;
}
val info:
#Client_rpcs.ctxt ->
?include_ops:bool -> Client_node_rpcs.Blocks.block -> block_info tzresult Lwt.t
2016-09-08 21:13:10 +04:00
val compare:
block_info -> block_info -> int
2016-09-08 21:13:10 +04:00
val monitor:
#Client_rpcs.ctxt ->
?include_ops:bool -> ?length:int -> ?heads:Block_hash.t list ->
2016-09-21 18:22:43 +04:00
?delay:int -> ?min_date:Time.t -> ?min_heads:int ->
2016-09-08 21:13:10 +04:00
?compare:(block_info -> block_info -> int) ->
unit -> block_info list tzresult Lwt_stream.t tzresult Lwt.t
2016-09-08 21:13:10 +04:00
val blocks_from_cycle:
#Client_rpcs.ctxt ->
2016-09-08 21:13:10 +04:00
Client_node_rpcs.Blocks.block ->
Cycle.t ->
Block_hash.t list tzresult Lwt.t