https://gitlab.com/tezos/tezos
Raw File
Tip revision: b70de6f944587cfd4a2d9ad008dad59b44ee2f12 authored by Arvid Jakobsson on 28 February 2024, 20:08:59 UTC
test
Tip revision: b70de6f
config.ml
(*****************************************************************************)
(*                                                                           *)
(* SPDX-License-Identifier: MIT                                              *)
(* Copyright (c) 2022 Nomadic Labs <contact@nomadic-labs.com>                *)
(*                                                                           *)
(*****************************************************************************)

let known_networks =
  List.map
    (fun (alias, (net : Octez_node_config.Config_file.blockchain_network)) ->
      (alias, net.genesis))
    Octez_node_config.Config_file.builtin_blockchain_networks
back to top