From f719d40a075a80bfcc38d206281cb9bedea611a2 Mon Sep 17 00:00:00 2001 From: SonNguyen Date: Wed, 14 Jan 2026 18:47:39 +0700 Subject: [PATCH] docs: add missing --chain testnet flag warning for snapshot users --- docs/pages/guide/node/rpc.mdx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/pages/guide/node/rpc.mdx b/docs/pages/guide/node/rpc.mdx index 39a47c87ab..ce16e92674 100644 --- a/docs/pages/guide/node/rpc.mdx +++ b/docs/pages/guide/node/rpc.mdx @@ -23,6 +23,17 @@ tempo node \ Daily snapshots for the persistent testnet can be found at [https://snapshots.tempoxyz.dev](https://snapshots.tempoxyz.dev). You can extract them either using `tempo download --url ` or downloading them manually and extracting them using `curl | lz4 -d | tar -xzf -`. +> **⚠️ Important: Testnet Configuration** +> +> When using a snapshot for the **Testnet** (Chain ID 42429), you must start the node with the `--chain testnet` flag. +> +> If you omit this flag, the node will default to Mainnet configuration, causing a `genesis hash mismatch` panic. +> +> **Correct usage:** +> ```bash +> tempo node --chain testnet --follow ... +> ``` + ## Example Systemd Service ```bash /dev/null/systemd.sh#L1-55