ligo/src/proto_alpha/lib_baking/client_baking_operations.mli
Mathias Bourgoin fcdf36acd4 Shell/RPC: remove the fake block /blocks/prevalidation
Add a `/mempool/pending_operations`
2018-03-30 00:44:58 +02:00

29 lines
977 B
OCaml

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