Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion how-to-guides/celestia-node-trusted-hash.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ By configuring these fields, your light node will maintain history from the spec
3. Set the trusted height & hash in your config file
1. Open your `config.toml` at `.celestia-light/config.toml` (or `.celestia-light-<other-network>/config.toml`)
2. Set `Header.Syncer.SyncFromHeight` to the trusted height (e.g. `SyncFromHeight = 123456`)
3. Set `Header.Syncer.SyncFromHash` to the trusted hash (e.g. `SyncFromHash = "<hash_of_block_n>"`)
3. Set `Header.Syncer.SyncFromHash` to the trusted hash (e.g. `SyncFromHash = "<hash_of_block_n>"`, with **no `0x` prefix**.)
4. Run the node:

```sh
Expand Down
2 changes: 1 addition & 1 deletion how-to-guides/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Let's set the trusted hash!
1. Set the trusted height & hash
1. Open your `config.toml` at `~/.celestia-light-{{ constants.mochaChainId }}/config.toml`
1. Set `Header.Syncer.SyncFromHeight` to the trusted height (e.g. `SyncFromHeight = 123456`)
1. Set `Header.Syncer.SyncFromHash` to the trusted hash (e.g. `SyncFromHash = "E8BD0C48260C496BB7A4D8D1E7BDBF1F26A2FE3CF5714DECE1741B2FFB3C095C"` )
1. Set `Header.Syncer.SyncFromHash` to the trusted hash (e.g. `SyncFromHash = "E8BD0C48260C496BB7A4D8D1E7BDBF1F26A2FE3CF5714DECE1741B2FFB3C095C"`, with **no `0x` prefix**)

> If you don't do this, when trying to retrieve data in a few minutes, you'll see a response saying `"result": "header: syncing in progress: localHeadHeight: 94721, requestedHeight: 2983850"`. You'll either need to let the node sync to the `requestedHeight`, or use quick sync with trusted hash to do this.
> Learn more in [the trusted hash quick sync guide](/how-to-guides/celestia-node-trusted-hash.md).
Expand Down
Loading