2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-01-29 04:06:47 +04:00
|
|
|
open Proto_alpha
|
2018-02-11 22:17:39 +04:00
|
|
|
open Alpha_context
|
2018-01-29 04:06:47 +04:00
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
val forge_endorsement:
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-04-16 02:44:24 +04:00
|
|
|
?chain:Chain_services.chain ->
|
2018-02-11 22:17:39 +04:00
|
|
|
Block_services.block ->
|
2018-05-22 17:22:38 +04:00
|
|
|
?async: bool ->
|
2018-05-26 15:14:33 +04:00
|
|
|
src_sk:Client_keys.sk_uri ->
|
2016-09-08 21:13:10 +04:00
|
|
|
public_key ->
|
|
|
|
Operation_hash.t tzresult Lwt.t
|
|
|
|
|
2017-11-07 20:38:11 +04:00
|
|
|
val create :
|
2018-02-16 21:10:18 +04:00
|
|
|
#Proto_alpha.full ->
|
2018-06-13 07:32:22 +04:00
|
|
|
?max_past:int64 (* number of seconds *) ->
|
2017-11-07 20:38:11 +04:00
|
|
|
delay:int ->
|
2016-09-08 21:13:10 +04:00
|
|
|
public_key_hash list ->
|
2018-06-20 07:20:50 +04:00
|
|
|
Client_baking_blocks.block_info tzresult Lwt_stream.t -> unit tzresult Lwt.t
|