Transaction stuck in the txpool on OP stack replica #445
Unanswered
TheAppleTucker
asked this question in
Node Operators
Replies: 2 comments
-
A few things you can try to look into: You should first try to run the latest releases, so for v1.101315.1 - op-geth and op-node v1.7.6. The following configurations may result in peering issues with the sequencer node and other replica nodes. I imagine the
Some things that might be helpful to know:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Bug Description
I'm running a custom OP stack rollup and trying to sync up a replica node locally to the upstream rollup. The replica node appears to be syncing to tip and queries to the replica node show the correct result. I'm running into issues trying to submit transactions to the replica node (to be broadcast upstream). I submit the transaction to the node but it seems to be stuck in the tx pool.
The --rollup.sequencerhttp flag is specified to the rpc url of the upstream node. The logs state "Transaction submitted".
curl http://localhost:8545
-X POST
-H "Content-Type: application/json"
--data '{"method":"txpool_content","params":[],"id":1,"jsonrpc":"2.0"}'
Output:
Steps to Reproduce
Expected behavior
I expect the transaction to be broadcast upstream and to be processed by the upstream node.
Environment Information:
Configurations:
exec geth
--datadir="$GETH_DATA_DIR"
--verbosity="$VERBOSITY"
--http
--http.corsdomain=""
--http.vhosts=""
--http.addr=0.0.0.0
--http.port="$RPC_PORT"
--http.api=web3,debug,eth,txpool,net,engine
--ws
--ws.addr=0.0.0.0
--ws.port="$WS_PORT"
--ws.origins=""
--ws.api=debug,eth,txpool,net,engine
--syncmode=full
--nodiscover
--maxpeers=1
--networkid=$CHAIN_ID
--unlock=$BLOCK_SIGNER_ADDRESS
--mine
--miner.etherbase=$BLOCK_SIGNER_ADDRESS
--password="$GETH_DATA_DIR"/password
--allow-insecure-unlock
--authrpc.addr="0.0.0.0"
--authrpc.port="8551"
--authrpc.vhosts=""
--authrpc.jwtsecret=/config/jwt-secret.txt
--gcmode=archive
--metrics
--metrics.addr=0.0.0.0
--metrics.port=6060
--rollup.sequencerhttp=$UPSTREAM_RPC_URL
"$@"
Logs:
Logs and/or error messages that help illustrate the issue.
Additional context
Add any other context about the problem here.
Please ensure all required sections are filled out accurately to expedite the debugging process and improve issue resolution efficiency.
Beta Was this translation helpful? Give feedback.
All reactions