We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We currently check if the bitcoin chain has been synced like this:
interbtc-clients/bitcoin/src/lib.rs
Line 394 in e6ee91d
However, neither initial_block_download nor verification_progress can be relied upon, see bitcoin/bitcoin#26432 and bitcoin/bitcoin#26433
initial_block_download
verification_progress
According to stackexchange we should compare the blocks and headers fields - if they are equal then the bitcoin node is synced.
blocks
headers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We currently check if the bitcoin chain has been synced like this:
interbtc-clients/bitcoin/src/lib.rs
Line 394 in e6ee91d
However, neither
initial_block_download
norverification_progress
can be relied upon, see bitcoin/bitcoin#26432 and bitcoin/bitcoin#26433According to stackexchange we should compare the
blocks
andheaders
fields - if they are equal then the bitcoin node is synced.The text was updated successfully, but these errors were encountered: