From 07fb8fbb087d33f54f8251cd1f64188d297d15c1 Mon Sep 17 00:00:00 2001 From: Romain Bardou Date: Mon, 15 Mar 2021 17:37:25 +0100 Subject: [PATCH] Node: remove Florencenet, rename Florencenobanet into Florencenet --- src/bin_node/node_config_file.ml | 38 ++++---------------------------- 1 file changed, 4 insertions(+), 34 deletions(-) diff --git a/src/bin_node/node_config_file.ml b/src/bin_node/node_config_file.ml index 6d9816571fea..87a0da367279 100644 --- a/src/bin_node/node_config_file.ml +++ b/src/bin_node/node_config_file.ml @@ -137,9 +137,9 @@ let blockchain_network_edo2net = "edonet2.smartpy.io"; "edonetb.boot.tezostaquito.io" ] -let blockchain_network_florencenobanet = +let blockchain_network_florencenet = make_blockchain_network - ~alias:"florencenobanet" + ~alias:"florencenet" { time = Time.Protocol.of_notation_exn "2021-03-04T20:00:00Z"; block = @@ -167,36 +167,6 @@ let blockchain_network_florencenobanet = "florencenobanet.boot.tez.ie"; "florencenobanet.smartpy.io:9733" ] -let blockchain_network_florencenet = - make_blockchain_network - ~alias:"florencenet" - { - time = Time.Protocol.of_notation_exn "2021-03-04T20:00:00Z"; - block = - Block_hash.of_b58check_exn - "BMFCHw1mv3A71KpTuGD3MoFnkHk9wvTYjUzuR9QqiUumKGFG6pM"; - protocol = - Protocol_hash.of_b58check_exn - "PtYuensgYBb3G3x1hLLbCmcav8ue8Kyd2khADcL5LsT5R1hcXex"; - } - ~genesis_parameters: - { - context_key = "sandbox_parameter"; - values = - `O - [ ( "genesis_pubkey", - `String - "edpkuix6Lv8vnrz6uDe1w8uaXY7YktitAxn6EHdy2jdzq5n5hZo94n" ) ]; - } - ~chain_name:"TEZOS_FLORENCENET_2021-03-04T20:00:00Z" - ~sandboxed_chain_name:"SANDBOXED_TEZOS" - ~default_bootstrap_peers: - [ "florence.tznode.net"; - "florencenet.kaml.fr"; - "florencenet.tezos.co.il"; - "florencenet.boot.tez.ie"; - "florencenet.smartpy.io" ] - let blockchain_network_sandbox = make_blockchain_network ~alias:"sandbox" @@ -290,8 +260,8 @@ let builtin_blockchain_networks_with_tags = [ (1, blockchain_network_sandbox); (4, blockchain_network_mainnet); (12, blockchain_network_edo2net); - (13, blockchain_network_florencenobanet); - (14, blockchain_network_florencenet) ] + (13, blockchain_network_florencenet) + (* 14 was Florencenet with Baking Accounts. *) ] |> List.map (fun (tag, network) -> match network.alias with | None -> -- GitLab