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
ChainScannedBlocks
We need the block scanners to return list of ChainBlockNextActions instead of Vec<ScannedBlock> in order to be able to handle rollbacks.
ChainBlockNextActions
Vec<ScannedBlock>
Adapt the BlockStreamer interface and implementations to return a ChainScannedBlocks (name TBD):
BlockStreamer
enum ChainScannedBlocks { RollForwards(Vec<ScannedBlock>), RollBackward(ChainPoint) }
TransactionsImporter
The text was updated successfully, but these errors were encountered:
ChainReader
sfauvel
dlachaume
Successfully merging a pull request may close this issue.
Why
We need the block scanners to return list of
ChainBlockNextActions
instead ofVec<ScannedBlock>
in order to be able to handle rollbacks.What
Adapt the
BlockStreamer
interface and implementations to return aChainScannedBlocks
(name TBD):How
TransactionsImporter
accordinglyThe text was updated successfully, but these errors were encountered: