package octez-shell-libs

  1. Overview
  2. Docs
Octez shell libraries

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-octez-v20.1.tag.bz2
sha256=ddfb5076eeb0b32ac21c1eed44e8fc86a6743ef18ab23fff02d36e365bb73d61
sha512=d22a827df5146e0aa274df48bc2150b098177ff7e5eab52c6109e867eb0a1f0ec63e6bfbb0e3645a6c2112de3877c91a17df32ccbff301891ce4ba630c997a65

doc/octez-shell-libs.client-base/Tezos_client_base/Client_confirmations/index.html

Module Tezos_client_base.Client_confirmationsSource

Sourceval wait_for_operation_inclusion : Client_context.full -> chain:Tezos_shell_services.Chain_services.chain -> ?predecessors:int -> ?confirmations:int -> ?branch:Tezos_base.TzPervasives.Block_hash.t -> Tezos_base.TzPervasives.Operation_hash.t -> (Tezos_base.TzPervasives.Block_hash.t * int * int) Tezos_base.TzPervasives.tzresult Lwt.t

wait_for_operation_inclusion chain ~predecessors ~confirmations oph waits for `oph` to appears in the main chain with at least `confirmations`. It returns the hash of the block that contains the operation and the operation position in the block.

This functions also looks for the operations in the `predecessors` of the initial chain head.

Sourceval lookup_operation_in_previous_blocks : Client_context.full -> chain:Tezos_shell_services.Block_services.chain -> predecessors:int -> Tezos_base.TzPervasives.Operation_list_hash.elt -> (Tezos_base.TzPervasives.Block_hash.t * int * int) option Tezos_base.TzPervasives.tzresult Lwt.t

lookup an operation in predecessors previous blocks, starting from head

Sourceval wait_for_bootstrapped : ?retry: ((Client_context.full as 'a -> ((Tezos_base.TzPervasives.Block_hash.t * Tezos_base.TzPervasives.Time.Protocol.t) Lwt_stream.t * Tezos_rpc.Context.stopper) Tezos_base.TzPervasives.tzresult Lwt.t) -> 'a -> ((Tezos_base.TzPervasives.Block_hash.t * Tezos_base.TzPervasives.Time.Protocol.t) Lwt_stream.t * Tezos_rpc.Context.stopper) Tezos_base.TzPervasives.tzresult Lwt.t) -> 'a -> unit Tezos_base.TzPervasives.tzresult Lwt.t

returns when the node consider itself as bootstrapped.

Function retry specifies how to behave in order to connect to the node. The default is the identity which correspond to simply calling the RPC. As an example, the endorser tries 5 times with delays in between attempts when the connection fails.

OCaml

Innovation. Community. Security.