ligo/lib_embedded_client_alpha/client_baking_operations.mli

31 lines
1.0 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 operation = {
hash: Operation_hash.t ;
content: Operation.t option ;
2016-09-08 21:13:10 +04:00
}
val monitor:
2017-11-07 20:38:11 +04:00
#Client_rpcs.rpc_sig ->
2016-09-08 21:13:10 +04:00
?contents:bool -> ?check:bool -> unit ->
operation list tzresult Lwt_stream.t tzresult Lwt.t
2016-09-08 21:13:10 +04:00
type valid_endorsement = {
hash: Operation_hash.t ;
source: public_key_hash ;
block: Block_hash.t ;
slots: int list ;
}
val monitor_endorsement:
2017-11-07 20:38:11 +04:00
#Client_rpcs.rpc_sig ->
valid_endorsement tzresult Lwt_stream.t tzresult Lwt.t