ligo/src/proto_alpha/lib_client_alpha/client_baking_operations.mli
Grégoire Henry c75756bd6d Refactor: introduce lib_client_environment
This allow to use the functorised version of the protocol in the
client.
2018-01-30 10:13:40 +01:00

34 lines
1.1 KiB
OCaml

(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2017. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Proto_alpha
open Tezos_context
type operation = {
hash: Operation_hash.t ;
content: Operation.t option ;
}
val monitor:
#Client_rpcs.ctxt ->
?contents:bool -> ?check:bool -> unit ->
operation list tzresult Lwt_stream.t tzresult Lwt.t
type valid_endorsement = {
hash: Operation_hash.t ;
source: public_key_hash ;
block: Block_hash.t ;
slots: int list ;
}
val monitor_endorsement:
#Client_rpcs.ctxt ->
valid_endorsement tzresult Lwt_stream.t tzresult Lwt.t