ligo/src/lib_shell_services/connection_metadata.mli

19 lines
813 B
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
2018-02-06 00:17:03 +04:00
(* Copyright (c) 2014 - 2018. *)
2016-09-08 21:13:10 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
(** All the metadata associated to a running connection. *)
type t = {
disable_mempool : bool ;
private_node : bool ;
}
val encoding: t Data_encoding.t
val pp: Format.formatter -> t -> unit