-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Subject: BSC Node Syncing Issue – Current Block Ahead of Highest Block #2864
Comments
Now: {
Also we are facing this error: InvalidResponseError: Returned error: transaction indexing is in progress |
@osizadmin what's your node start up command? |
node start up command: ./opt/bsc/geth_linux --cache=16000 --config /opt/bsc/config.toml --datadir /opt/bsc/node --rpc.allow-unprotected-txs --http --maxpeers=500 --ws --syncmode=snap --history.transactions=0 --allow-insecure-unlock --tries-verify-mode=none --db.engine=pebble |
There are two independent ways a node can receive new blocks while syncing:
Hence, it is not unusual to see currentBlock occasionally surpass highestBlock in eth.syncing. Once the node finishes full sync, the values should align. |
We are facing the following error: InvalidResponseError: Returned error: transaction indexing is in progress. The transaction is completed, but we are unable to retrieve the indexed data to display user transaction history on our website. |
I am experiencing an issue with my Binance Smart Chain (BSC) full node while syncing. Below are the details of my setup and the issue encountered:
System Information
Geth version: Geth/v1.4.16-2df94c37-20241125/linux-amd64/go1.21.13
OS & Version: Linux (Ubuntu 22.04)
Commit hash: (if applicable)
Expected Behaviour
The node should sync properly, with the currentBlock value progressing until it matches the highestBlock.
Actual Behaviour
The currentBlock is ahead of the highestBlock, which is causing an unexpected sync state.
Command Output:
{
currentBlock: 46012765,
highestBlock: 46012644,
startingBlock: 46012642,
syncedAccounts: 0,
txIndexFinishedBlocks: 603136,
txIndexRemainingBlocks: 45409630
}
Steps to Reproduce the Behaviour
restarted bnb core
Observed the block difference using eth.syncing.
Checked peer count with admin.peers.length (90 peers connected).
Also we are facing this error: InvalidResponseError: Returned error: transaction indexing is in progress
The text was updated successfully, but these errors were encountered: