-
Notifications
You must be signed in to change notification settings - Fork 2
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
Block Formation Specs #2
Comments
You also need a step that confirms that a submitted block has been included in the rootchain (probably with a configurable X number of blocks to wait for to reach the "finality" we want). We also might want to think about some protection against reorgs (which can be mitigated with the X we chose, but it's all about risk vs speed). Btw, this is how we were polling for transactions in the eWallet in case that's useful: |
One more thing that needs to be handled (could be a new issue) is defining the gas price for |
EDIT: As discussed on the call today, we have agreed that it's a better idea to push this requirement away from the child chain service to Watcher-security. More API design and discussion is required before we proceed. |
By which filter would the user query for the transaction? |
What's left is making sure we do not go over transactions limit per block, including fee transactions. |
@mederic-p our current solution for keeping transactions in a block under the limit is a bit clunky.
The current solution is OK for me, but we have to remember about it's limits. Do we agree it's good enough or do we want to change it now? |
This covers how we handle forming blocks in the childchain and how we need to persist certain information back down into the block, transaction and output.
Checklist:
The text was updated successfully, but these errors were encountered: