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
invalidateblock
For example,
100 -> 101 -> 102 -> 103 (main chain) \ 101a (side chain)
$ getbestblock { hash: HASH_OF_103 height: 103 } $ invalidateblock HASH_OF_103 $ invalidateblock HASH_OF_102 $ getbestblock { hash: HASH_OF_101 height: 101 }
$ invalidateblock HASH_OF_101 $ getbestblock { hash: HASH_OF_101a height: 101a } $ getblock HASH_OF_101a block HASH_OF_101a is not in the main chain
$ getbestblock { hash: HASH_OF_103 height: 103 } $ invalidateblock HASH_OF_101 (lbcd goes rogue...)
The text was updated successfully, but these errors were encountered:
lbryio/lbry-sdk#3520
Sorry, something went wrong.
Just want to comment that this was recently fixed in btcd: btcsuite#2196 , so the fix could be replicated here.
roylee17
No branches or pull requests
For example,
$ invalidateblock HASH_OF_101 $ getbestblock { hash: HASH_OF_101a height: 101a } $ getblock HASH_OF_101a block HASH_OF_101a is not in the main chain
The text was updated successfully, but these errors were encountered: