Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(website): update run a prover troubleshooting #13407

Merged
merged 3 commits into from
Mar 22, 2023
Merged
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
10 changes: 9 additions & 1 deletion packages/website/pages/docs/guides/run-a-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ Finally, set the following environment variables:
- L1_ENDPOINT_WS

<Callout>
You can get a Sepolia L1 endpoint from a few places, [Alchemy](https://www.alchemy.com/) is one popular example.
You can get a Sepolia L1 endpoint from a few places,
[Alchemy](https://www.alchemy.com/) is one popular example.
</Callout>

### Enable your node as a prover (optional)
Expand Down Expand Up @@ -155,6 +156,13 @@ A [Grafana](https://grafana.com/) dashboard with a [Prometheus](https://promethe
You can ignore any WARN logs.

### Node error logs

#### `error: L1_ID`
The block that you want to prove has already been verified, you can ignore this.

#### `error: L1_ALREADY_PROVEN`
This block has been proven by someone else, but its not verified yet, you can ignore it.

#### `Fatal: Failed to register the Ethereum service: database contains incompatible genesis`
Try to remove the node with `docker compose down -v` and then try again.

Expand Down