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. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-05-15 15:16:08 +04:00
|
|
|
(** All the metadata associated to a running connection. *)
|
2017-11-13 22:06:30 +04:00
|
|
|
|
2018-06-01 19:10:54 +04:00
|
|
|
type t = {
|
|
|
|
disable_mempool : bool ;
|
|
|
|
private_node : bool ;
|
|
|
|
}
|
|
|
|
|
2018-05-15 15:16:08 +04:00
|
|
|
val encoding: t Data_encoding.t
|
2018-06-01 19:10:54 +04:00
|
|
|
val pp: Format.formatter -> t -> unit
|