From 5af791cc6730b31d838690ac7a7a9a8047ca5671 Mon Sep 17 00:00:00 2001 From: DrZoltanFazekas <55164848+DrZoltanFazekas@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:12:33 +0100 Subject: [PATCH] Update node.md --- zq2/docs/nodes/node.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zq2/docs/nodes/node.md b/zq2/docs/nodes/node.md index 5874ed2..b09b427 100644 --- a/zq2/docs/nodes/node.md +++ b/zq2/docs/nodes/node.md @@ -182,7 +182,7 @@ Sometimes a hard fork will be needed when the execution semantics of blocks or t It is important to upgrade your node's version before the block height at which these hard forks are activated. Not doing so may lead to your node going out of sync and losing rewards if it is a validator. -First, update your `start_node.sh` script and configuration file by re-running `z2 join`: +First, pull the `main` branch and update your `start_node.sh` script and configuration file by re-running `z2 join`: ```bash z2 join --chain zq2-prototestnet @@ -211,5 +211,5 @@ Start your new node: You can validate the version your node is running by calling the `GetVersion` API method: ```bash -curl --request POST --url http://localhost:4201 --header 'content-type: application/json' --data '{"method":"GetVersion","id":1,"jsonrpc":"2.0"}' +curl --request POST --url http://localhost:4202 --header 'content-type: application/json' --data '{"method":"GetVersion","id":1,"jsonrpc":"2.0"}' ```