FAQ & Troubleshooting Guide
Common Error Types
1. Docker Installation Errors
Error Message:
Processing error: Please install docker first.
Cause: Docker is not installed or improperly configured. Zero-knowledge proof generation requires Docker.
2. Docker Execution Errors
Error Message:
Processing error: docker returned failure exit code: Some(132)
Cause: The Docker container starts but fails during execution. Exit code 132 generally points to resource limitations or system-level incompatibility.
3. Verification Timing Issues
Error Messages:
Tree [hash] has had the same root [root] for 3 checks, putting to sleep for 5m0s
No active trees available for verification
Cause: The system performs multiple root checks for Merkle trees. If a tree remains unchanged after 3 checks, it is temporarily put to sleep.
4. Environment Setup Issues
Warning Message:
WARNING:(ast) sonic only supports go1.17-1.23, but your environment is not suitable
Cause: Your Go version is incompatible with the Sonic component of the verifier.
5. Connection Refused Errors
Error Message:
failed to prove sample for tree [hash]: proof verification error: error making request: Post "http://127.0.0.1:3001/process": dial tcp 127.0.0.1:3001: connect: connection refused
Cause: The ZK prover service is either not running or not accessible on the expected port (3001).
6. Low-End Device Performance
Symptoms: Proofs silently fail or the node becomes unresponsive.
Cause: Devices with insufficient system resources cannot sustain proof generation processes effectively.
7. Error: Failed to load .env
file
.env
fileError Message:
failed to load .env file: open .env: no such file or directory
Cause:
The application expects a .env
file in the working directory but cannot find one.
Solution:
Create a .env
file with all required environment variables. Here's a sample:
Place this .env
file in the same directory where you're running the Light Node binary.
Comprehensive Solutions
Docker Installation Issues
Solution:
Docker Execution Errors
Solution:
Add:
Connection Refused Errors (ZK Prover)
Solution:
Go Version Compatibility
Solution:
Verification Timing and Tree Management
Solution:
Update parameters:
Low-End Device Performance
Recommended Minimum Specs:
CPU: 4+ cores
RAM: 8GB+
Storage: 50GB SSD
OS: Ubuntu 20.04 LTS or newer
Deployment Checklist
Additional Issues
How do I update the gRPC endpoint for the Light Node?
We've recently updated the gRPC endpoint. Please make the following changes in your .env
file to continue syncing correctly with the LayerEdge network:
Step 1: Update the .env File
Step 2: Rebuild Your Light Node
If you're using Go:
If you're using Docker-based scripts, restart the container or service as appropriate.
Step 3: Confirm Connection
Ensure that your node logs confirm a successful connection to the new gRPC endpoint. You should no longer see errors like connection refused
or unavailable gRPC service
.
How do I increase the API request timeout?
If your CLI node is experiencing timeouts while interacting with the LayerEdge services (e.g., Points API, gRPC), you can increase the request timeout duration to ensure smoother operation.
Step 1: Update the .env File
Step 2: Restart or Rebuild the Node
If you're running the node directly:
Step 3: Verify the Change Your node should now handle longer response times without triggering timeout errors.
Last updated
Was this helpful?