package tezos-protocol-environment

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module type CONTEXT = sig ... end
module type VIEW = sig ... end
module type TREE = sig ... end
module Equality_witness : sig ... end
module Context : sig ... end
module Register (C : CONTEXT) : sig ... end
type validation_result = {
  1. context : Context.t;
  2. fitness : Tezos_base.Fitness.t;
  3. message : string option;
  4. max_operations_ttl : int;
  5. last_allowed_fork_level : Int32.t;
}
type quota = {
  1. max_size : int;
  2. max_op : int option;
}
type rpc_context = {
  1. block_hash : Tezos_crypto.Block_hash.t;
  2. block_header : Tezos_base.Block_header.shell_header;
  3. context : Context.t;
}
val err_implementation_mismatch : expected:string -> got:string -> 'a