From c1d95c35b2d0cc9427b055e9e8568b19b9242fcb Mon Sep 17 00:00:00 2001 From: Arash <23505281+adshmh@users.noreply.github.com> Date: Tue, 30 Jul 2024 18:55:00 -0400 Subject: [PATCH] A few corrections on quickstart.md doc (#713) Make corrections to the `quickstart.md` file: Two errors in relay miner configuration file step: - The keybase name needs to be valid - The specified metrics port is already taken by the LocalNet components. Corrected a typo in the text. --- docusaurus/docs/develop/developer_guide/quickstart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docusaurus/docs/develop/developer_guide/quickstart.md b/docusaurus/docs/develop/developer_guide/quickstart.md index 9dda6519b..5cd5e7bb8 100644 --- a/docusaurus/docs/develop/developer_guide/quickstart.md +++ b/docusaurus/docs/develop/developer_guide/quickstart.md @@ -403,11 +403,11 @@ The following is an example config to get you started: ```bash cat <> shannon_relayminer_config.yaml -default_signing_key_names: [ "keybase-key-name" ] +default_signing_key_names: [ "shannon_supplier" ] smt_store_path: smt_stores metrics: enabled: true - addr: :9090 + addr: :9999 # you may need to change the metrics server port due to port conflicts. pocket_node: query_node_rpc_url: tcp://127.0.0.1:26657 query_node_grpc_url: tcp://127.0.0.1:9090 @@ -651,7 +651,7 @@ Given that we just staked a few suppliers, you customize the query to look for ## 6. Dynamically Scaling LocalNet -We went through a low of steps above just so you can get a feel for how things work. +We went through a flow of steps above just so you can get a feel for how things work. That said, you can dynamically scale the number of any actors in LocalNet by ony changing one line!