🛠️Troubleshooting
Problems that often occur in running goracle nodes and how to solve them. All of these issues are not fully worked out, I share based on my own experience.
Last updated
Problems that often occur in running goracle nodes and how to solve them. All of these issues are not fully worked out, I share based on my own experience.
Last updated
If you facing error like screenshot above, your goracle binary is not match to the latest version. Make sure you update to the latest version to solve this issue by the following command below.
Make sure you copy this command one by one.
Now check your logs using this command.
This error is related to your algorand node did not catch up to the latest block. Make sure you check the algorand node status by the following command below.
Make sure your Sync Time is 0.0s
and check Last commited block is same as the algoexplorer testnet. If your algorand node catch up slowly, you can restart by the following command below.
After use this command, you can go back to check the algorand status.
Don't worry about this error, because this error is normal. The oracle request sometime not coming because this is related to their server temporary stopped.
This error also related to RangeError: Maximum call stack size exceeded and also some mistake on your .goracle
file, your .goracle
file configuration should be like this.
Delete all related to authKey
and authHeader
and save your .goracle
file. Then do this command to restart your node.
If you facing error like this, you need to top up the participation address. You can go to this link below.
Participation address is different from your Pera Wallet. Participation address generated from goracle init.
Next step, you need to copy the participation address and top up your participation address from top up button from link above.
Update: In the new version of goracle binary, they already fixed for this error. So you if you get this error, you can update to latest version in Upgrade.
Solution 1
Your node is running in the docker and you need to stop it using this command below.
This command will stop and remove your container. Then try again to start your goracle node.
Check your logs
Solution 2
If didn't work, you can check the .goracle
file if there is something mistake in your configuration. Then try again. This is the example :
As you can see in the line 6, You see the comma on the last line, you need to remove it in order to run the node again. So this is example if your .goracle
file didn't have any mistake.
Solution 3
Also another solution is make sure your server configuration is correct.
This is correct
This is not correct
Solution 4
Remove all exited container using this following command.
After doing that, back to Solution 1.
You can solve this issue by adding sudo in goracle init section. here is the example.
add sudo every command if that command are needed to access using root.
If you're using Purestake, don't worry about this error. As long as your goracle node still submitted vote, your node is fine. Because this error is from Purestake API, maybe their server are overloaded.
This problem is from your API (Purestake or Algonode), maybe have some problem with their server or not sure what's the problem. The only way is running own algorand node or wait for goracle team to fix this issue. Because this issue is from their server. But you can use this command to make your goracle node when stopped will automatically restarted.
With this command, the container will attempt to maximum of 5 retries to restart when it failure, but it will not attempt to restart if you stop it manually.
Check to make sure this command already applied to your goracle node.
Ping me on discord (Lightbulb#0667) if this step is working or not, since i haven't tested it yet.
Thanks to Moon1215i#4745 for sharing this guide how to restart node.