From 5a3a0be13729207b10e5ba22af6ba6c34ccf84e1 Mon Sep 17 00:00:00 2001 From: StephanusFischer <110837229+StephanusFischer@users.noreply.github.com> Date: Thu, 26 Sep 2024 13:07:23 +0200 Subject: [PATCH] Update subnet-decentralization-whatif.md Correction to example usage --- docs/subnet-decentralization-whatif.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/subnet-decentralization-whatif.md b/docs/subnet-decentralization-whatif.md index 2f293e83f..f7dc0d9de 100644 --- a/docs/subnet-decentralization-whatif.md +++ b/docs/subnet-decentralization-whatif.md @@ -53,13 +53,13 @@ Please note that the number of nodes in the subnet should typically stay unchang 1. **Adding and Removing Nodes from a Subnet**: To simulate the effect of adding nodes `node4` and `node5` and removing nodes `node6` and `node7` from subnet `subnet123`, use the following command: ```bash - subnet whatif-decentralization subnet123 --add-nodes node4 node5 --remove-nodes node6 node7 + dre subnet whatif-decentralization subnet123 --add-nodes node4 node5 --remove-nodes node6 node7 ``` 2. **Specifying Initial Nodes**: If you want to override the current nodes in the subnet with a custom set for the analysis: ```bash - subnet whatif-decentralization subnet123 --subnet-nodes-initial node1 node2 node3 node4 node5 --add-nodes node6 --remove-nodes node2 + dre subnet whatif-decentralization subnet123 --subnet-nodes-initial node1 node2 node3 node4 node5 --add-nodes node6 --remove-nodes node2 ``` #### How It Works