Module Mavryk_base.Test_chain_status

type t =
  1. | Not_running
  2. | Forking of {
    1. protocol : Mavryk_crypto.Hashed.Protocol_hash.t;
    2. expiration : Time.Protocol.t;
    }
  3. | Running of {
    1. chain_id : Mavryk_crypto.Hashed.Chain_id.t;
    2. genesis : Mavryk_crypto.Hashed.Block_hash.t;
    3. protocol : Mavryk_crypto.Hashed.Protocol_hash.t;
    4. expiration : Time.Protocol.t;
    }
val equal : t -> t -> bool
val encoding : t Data_encoding.t
val pp : Stdlib.Format.formatter -> t -> unit