[Node Operator Question] Since the dencun upgrade went live on goerli, my op-goerli node has halted #200
Unanswered
Shankusu993
asked this question in
Node Operators
Replies: 2 comments 3 replies
-
seems Optimism Goerli has been completely deprecated,etherscan shows it stopped produce blocks one day ago |
Beta Was this translation helpful? Give feedback.
1 reply
-
I'm not sure if we need to modify rollup.json to include some more field about decun time You can use this script to check if your chain is on the right fork or not #!/bin/bash
# RPCs
OP_RETH="<op-geth-rpc-endpoint>"
BASE="https://mainnet.base.org"
NOW=$(cast block-number --rpc-url $OP_RETH)
BLOCK_DIFF=$(diff <(cast block $NOW --rpc-url $OP_RETH) <(cast block $NOW --rpc-url $BASE))
# Check if BLOCK_DIFF is empty
if [[ -z "$BLOCK_DIFF" ]]; then
echo "No diff in block #$NOW between op-reth and canonical base mainnet RPC."
else
echo "-----------------------------------------------------------------------"
echo " -> ERROR! Diff in block #$NOW between op-reth and canonical base mainnet RPC"
echo "$BLOCK_DIFF"
echo "-----------------------------------------------------------------------"
fi Source: paradigmxyz/reth#6050 (comment) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Are you running the most up to date node software?
Did you check the documentation?
Did you check for duplicate questions?
Issue Description
Since the dencun upgrade went live, my optimism goerli testnet node has been halted. I have already verified that the L1 node my op-node connects to is upgraded (it's from alchemy btw), but still the
op-geth
is stuck andop-node
gives following logs:Protocol Description
Node Logs
Additional Information
No response
Feedback
No response
Beta Was this translation helpful? Give feedback.
All reactions