From 8e276009a0828624ce409aed32bc321d511a331c Mon Sep 17 00:00:00 2001 From: Killian Delarue Date: Thu, 9 Mar 2023 20:38:43 +0100 Subject: [PATCH 1/2] Node: Update mumbainet alias --- src/lib_node_config/config_file.ml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib_node_config/config_file.ml b/src/lib_node_config/config_file.ml index 441d9197b66e..7591d4593ec0 100644 --- a/src/lib_node_config/config_file.ml +++ b/src/lib_node_config/config_file.ml @@ -208,10 +208,10 @@ let blockchain_network_mumbainet = make_blockchain_network ~alias:"mumbainet" { - time = Time.Protocol.of_notation_exn "2023-01-19T15:00:00Z"; + time = Time.Protocol.of_notation_exn "2023-03-09T15:00:00Z"; block = Block_hash.of_b58check_exn - "BMVeyjhT4yd421XJAYcB54hm54CwGqkV6tCzkJ8VpHPVch6Mkx6"; + "BLytf7aG27Ca4xZ8cG4otofaUQfUA9TdULvHC3L9fToPHBcPKDV"; protocol = Protocol_hash.of_b58check_exn "Ps9mPmXaRzmzk35gbAYNCAw6UXdE2qoABTHbN2oEEc1qM7CwT9P"; @@ -227,10 +227,10 @@ let blockchain_network_mumbainet = ); ]; } - ~chain_name:"TEZOS_MUMBAINET_2023-01-19T15:00:00Z" + ~chain_name:"TEZOS_MUMBAINET_2023-03-09T15:00:00Z" ~sandboxed_chain_name:"SANDBOXED_TEZOS" ~default_bootstrap_peers: - ["mumbainet.teztnets.xyz"; "mumbainet.visualtez.com"] + ["mumbainet.teztnets.xyz"; "mumbainet.boot.ecadinfra.com"] let blockchain_network_sandbox = make_blockchain_network -- GitLab From 6571f0de0d9891c072e413e74574c71254236705 Mon Sep 17 00:00:00 2001 From: Killian Delarue Date: Thu, 9 Mar 2023 20:42:49 +0100 Subject: [PATCH 2/2] Changelogs: Add an entry for mumbainet alias update --- CHANGES.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 719ca77507fa..d47bcfed52c7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -51,6 +51,9 @@ Node indexing strategy. For now, only the ``minimal`` indexing strategy is allowed. +- Updated the built-in network alias for Mumbainet (``--network mumbainet``). + The new alias matches the relaunch of Mumbainet with the protocol `PtMumbai2`. + Client ------ -- GitLab