2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
val generate_seed_nonce: unit -> Nonce.t
|
2017-03-08 21:47:01 +04:00
|
|
|
(** [generate_seed_nonce ()] is a random nonce that is typically used
|
|
|
|
in block headers. When baking, bakers generate random nonces whose
|
|
|
|
hash is commited in the block they bake. They will typically
|
|
|
|
reveal the aforementionned nonce during the next cycle. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
val inject_block:
|
2017-04-05 01:35:41 +04:00
|
|
|
Client_rpcs.config ->
|
2016-09-08 21:13:10 +04:00
|
|
|
Client_proto_rpcs.block ->
|
|
|
|
?force:bool ->
|
|
|
|
priority:int ->
|
|
|
|
timestamp:Time.t ->
|
|
|
|
fitness:Fitness.t ->
|
|
|
|
seed_nonce:Nonce.t ->
|
|
|
|
src_sk:secret_key ->
|
2017-04-19 23:46:10 +04:00
|
|
|
Client_node_rpcs.operation list list ->
|
2016-09-08 21:13:10 +04:00
|
|
|
Block_hash.t tzresult Lwt.t
|
2017-03-08 21:47:01 +04:00
|
|
|
(** [inject_block cctxt blk ?force ~priority ~timestamp ~fitness
|
|
|
|
~seed_nonce ~src_sk ops] tries to inject a block in the node. If
|
|
|
|
[?force] is set, the fitness check will be bypassed. [priority]
|
|
|
|
will be used to compute the mining slot (level is
|
|
|
|
precomputed). [src_sk] is used to sign the block header. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
val forge_block:
|
2017-04-05 01:35:41 +04:00
|
|
|
Client_rpcs.config ->
|
2016-09-08 21:13:10 +04:00
|
|
|
Client_proto_rpcs.block ->
|
|
|
|
?force:bool ->
|
2017-04-19 23:46:10 +04:00
|
|
|
?operations:Client_node_rpcs.operation list ->
|
2016-09-08 21:13:10 +04:00
|
|
|
?best_effort:bool ->
|
|
|
|
?sort:bool ->
|
|
|
|
?timestamp:Time.t ->
|
2017-05-08 23:35:29 +04:00
|
|
|
priority:[`Set of int | `Auto of (public_key_hash * int option * bool)] ->
|
2016-09-08 21:13:10 +04:00
|
|
|
seed_nonce:Nonce.t ->
|
|
|
|
src_sk:secret_key ->
|
2017-03-08 21:47:01 +04:00
|
|
|
unit ->
|
2016-09-08 21:13:10 +04:00
|
|
|
Block_hash.t tzresult Lwt.t
|
2017-03-14 19:32:29 +04:00
|
|
|
(** [forge_block cctxt parent_blk ?force ?operations ?best_effort
|
|
|
|
?sort ?timestamp ?max_priority ?priority ~seed_nonce ~src_sk
|
|
|
|
pk_hash] injects a block in the node. In addition of inject_block,
|
|
|
|
it will:
|
|
|
|
|
|
|
|
* Operations: If [?operations] is [None], it will get pending
|
|
|
|
operations and add them to the block. Otherwise, provided
|
|
|
|
operations will be used. In both cases, they will be validated.
|
|
|
|
|
|
|
|
* Mining priority: If [`Auto] is used, it will be computed from
|
|
|
|
the public key hash of the specified contract, optionally capped
|
2017-05-08 23:35:29 +04:00
|
|
|
to a maximum value, and optionnaly restricting for free mining slot.
|
2017-03-14 19:32:29 +04:00
|
|
|
|
|
|
|
* Timestamp: If [?timestamp] is set, and is compatible with the
|
|
|
|
computed mining priority, it will be used. Otherwise, it will be
|
|
|
|
set at the best mining priority.
|
|
|
|
*)
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
module State : sig
|
2016-12-03 16:05:02 +04:00
|
|
|
val get_block:
|
|
|
|
Client_commands.context ->
|
|
|
|
Raw_level.t -> Block_hash.t list tzresult Lwt.t
|
|
|
|
val record_block:
|
|
|
|
Client_commands.context ->
|
|
|
|
Raw_level.t -> Block_hash.t -> Nonce.t -> unit tzresult Lwt.t
|
2016-09-08 21:13:10 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
val create:
|
2016-12-03 16:05:02 +04:00
|
|
|
Client_commands.context ->
|
2016-09-08 21:13:10 +04:00
|
|
|
?max_priority: int ->
|
|
|
|
public_key_hash list ->
|
2017-04-05 01:35:41 +04:00
|
|
|
Client_mining_blocks.block_info list tzresult Lwt_stream.t ->
|
|
|
|
Client_mining_operations.valid_endorsement tzresult Lwt_stream.t ->
|
|
|
|
unit tzresult Lwt.t
|
2017-02-14 13:33:34 +04:00
|
|
|
|
|
|
|
val get_unrevealed_nonces:
|
|
|
|
Client_commands.context ->
|
|
|
|
?force:bool ->
|
|
|
|
Client_proto_rpcs.block ->
|
|
|
|
(Block_hash.t * (Raw_level.t * Nonce.t)) list tzresult Lwt.t
|