-
Notifications
You must be signed in to change notification settings - Fork 23
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
[Feature]: Add a bitcoin block start height to the signers #685
Open
1 of 2 tasks
Comments
3 tasks
2 tasks
This was referenced Dec 4, 2024
1 task
The stacks side of this was not completed in #1093 |
Status update: the Bitcoin side is out there, the Stacks side is still missing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feature - Add a bitcoin block start height to the signers
1. Description
We should have a bitcoin start height for which all signers will have bitcoin and stacks block headers for. This issue is about making sure that the signers have a common idea for when to begin their bridging activities, and provides a foundational assumption that we can use in other areas.
1.1 Context & Purpose
Having a common bitcoin and stacks height solves a few problems.
I expect that it will solve other problems since we can rely on the fact that the signers start with the same basic blockchain information.
2. Technical Details:
The natural choice for this bitcoin block start height is the stacks Nakamoto start height, since that is easy to fetch and can be used consistently in both testnet and mainnet. It also frees us from adding another variable in the config.
2.1 Acceptance Criteria:
3. Related Issues and Pull Requests (optional):
fetch_unknown_ancestors
in stacksapi.rs
#637.4. Appendix (new)
The block observer loads all blocks that need processing in memory before proceeding. This is not the best thing for us to do because we could need to process thousands of blocks at one time. Since each block takes up around ~1.5 MBs this could take up a lot of memory. Instead we should use the getblockheader RPC to get the headers and fetch the actual block when processing it.
The text was updated successfully, but these errors were encountered: