ligo/src/client/embedded/alpha/baker/client_mining_operations.mli

37 lines
1.1 KiB
OCaml
Raw Normal View History

2016-09-08 19:13:10 +02:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* 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 19:13:10 +02:00
}
val monitor:
Client_rpcs.config ->
2016-09-08 19:13:10 +02:00
?contents:bool -> ?check:bool -> unit ->
operation list tzresult Lwt_stream.t tzresult Lwt.t
2016-09-08 19:13:10 +02:00
type valid_endorsement = {
hash: Operation_hash.t ;
source: public_key_hash ;
block: Block_hash.t ;
slots: int list ;
}
(*
2016-09-08 19:13:10 +02:00
val filter_valid_endorsement:
Client_rpcs.config ->
2016-09-08 19:13:10 +02:00
operation -> valid_endorsement option Lwt.t
*)
2016-09-08 19:13:10 +02:00
val monitor_endorsement:
Client_rpcs.config ->
valid_endorsement tzresult Lwt_stream.t tzresult Lwt.t