Skip to content

Commit

Permalink
A few corrections on quickstart.md doc (#713)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
adshmh authored Jul 30, 2024
1 parent fabb0b4 commit c1d95c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docusaurus/docs/develop/developer_guide/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,11 +403,11 @@ The following is an example config to get you started:

```bash
cat <<EOF >> 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
Expand Down Expand Up @@ -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!

Expand Down

0 comments on commit c1d95c3

Please sign in to comment.