package tezos-shell-services

  1. Overview
  2. Docs
type update =
  1. | Ignored_head
  2. | Branch_switch
  3. | Head_increment
type t =
  1. | Processed_block of {
    1. request : Request.view;
    2. request_status : Tezos_workers.Worker_types.request_status;
    3. update : update;
    4. fitness : Tezos_base.Fitness.t;
    5. level : Int32.t;
    6. timestamp : Tezos_base.Time.Protocol.t;
    }
  2. | Could_not_switch_testchain of Tezos_error_monad.Error_monad.error list
type view = t
val view : t -> view
val encoding : t Data_encoding.encoding
val pp : Format.formatter -> t -> unit