@@ -56,8 +56,17 @@ Here are steps for setting up a new validator node.
56
56
* Get this node's tendermint validator * consensus address* : ` zbld tendermint show-address `
57
57
* Get this node's tendermint validator * consensus pubkey* : ` zbld tendermint show-validator `
58
58
* Note that * consensus address* and * consensus pubkey* are not the same as ` address ` and ` pubkey ` were used for account creation.
59
- * Add validator node: ` zblcli tx validator add-node --validator-address=<validator address> --validator-pubkey=<validator pubkey> --name=<node name> --from=<name> `
60
59
* Start node: ` zbld start `
60
+ * In the output, you can notice that ` height ` increases quickly over time.
61
+ This means that the node is in updating to the latest network state (it takes some time).
62
+
63
+ You can also check node status by connecting CLI to your local node ` zblcli config node tcp://0.0.0.0:26657 `
64
+ and executing the command ` zblcli status ` to get the current status.
65
+ The ` true ` value for ` catching_up ` field means that the node is in the updating process.
66
+ The value of ` latest_block_height ` reflects the current node height.
67
+
68
+ * Wait until the value of ` catching_up ` field gets to ` false ` value.
69
+ * Add validator node: ` zblcli tx validator add-node --validator-address=<validator address> --validator-pubkey=<validator pubkey> --name=<node name> --from=<name> `
61
70
62
71
* Congrats! You are an owner of the validator node.
63
72
@@ -74,8 +83,9 @@ Example:
74
83
* ` sed -i "s/persistent_peers = \"\"/<node id>@<node ip>,<node2 id>@<node2 ip>/g" $HOME/.zbld/config/config.toml `
75
84
* ` sudo ufw allow 26656/tcp `
76
85
* ` sudo ufw allow 26657/tcp `
77
- * ` zblcli tx validator add-node --validator-address=$(zbld tendermint show-address) --validator-pubkey=$(zbld tendermint show-validator) --name=node-name --from=node_admin `
78
86
* ` zbld start `
87
+ * ` zbld status `
88
+ * ` zblcli tx validator add-node --validator-address=$(zbld tendermint show-address) --validator-pubkey=$(zbld tendermint show-validator) --name=node-name --from=node_admin `
79
89
* ` zblcli query validator all-nodes `
80
90
81
91
##### Policy
0 commit comments