From 91f381f83c5ee90174352a5fefe7f035bbe3f375 Mon Sep 17 00:00:00 2001 From: Nathan Seva Date: Sun, 24 Mar 2024 22:38:45 +0100 Subject: [PATCH 1/2] fix change id instruction in local network generation --- docs/build/networks-faucets/local-network.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/build/networks-faucets/local-network.mdx b/docs/build/networks-faucets/local-network.mdx index 51b77a4aa..340e80d3b 100644 --- a/docs/build/networks-faucets/local-network.mdx +++ b/docs/build/networks-faucets/local-network.mdx @@ -70,11 +70,11 @@ Setup your node to use the secret you just generated as its public key and staki {} ``` -- You also have to modify the file `massa-node/base_config/config.toml` to match the same ChainID as a Sandbox node, as it defaults to the Mainnet ChainID of 77658377. +- You also have to modify the file `massa-client/base_config/config.toml` to match the same ChainID as a Sandbox node, as it defaults to the Mainnet ChainID of 77658377. ```javascript - { - chain_id = 77 - } + ... + chain_id = 77 + ... ``` You can now launch your node: From eb1171330839dbe5892b389b2dec271f52686d50 Mon Sep 17 00:00:00 2001 From: Nathan Seva Date: Wed, 10 Apr 2024 11:23:58 +0200 Subject: [PATCH 2/2] Update docs/build/networks-faucets/local-network.mdx Co-authored-by: Adrien LF --- docs/build/networks-faucets/local-network.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/networks-faucets/local-network.mdx b/docs/build/networks-faucets/local-network.mdx index 340e80d3b..7a34ebbe6 100644 --- a/docs/build/networks-faucets/local-network.mdx +++ b/docs/build/networks-faucets/local-network.mdx @@ -71,7 +71,7 @@ Setup your node to use the secret you just generated as its public key and staki ``` - You also have to modify the file `massa-client/base_config/config.toml` to match the same ChainID as a Sandbox node, as it defaults to the Mainnet ChainID of 77658377. - ```javascript + ```toml ... chain_id = 77 ...