-
Notifications
You must be signed in to change notification settings - Fork 206
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
Users SBAT send sequence of txs in sequential blocks #420
Comments
Also related is celo-org/celo-monorepo#217 |
I didn't dig too deeply, but one thing I noticed when playing around in celo-blockchain is that as soon as block N is finalized, validators create block N+1 with a timestamp in the future, and wait around until that timestamp to send the preprepare. This suggests that the earliest any tx sent between the finalization of block N and the preprepare for N+1 can be included is N+2, adding an arguably unnecessary 1 block latency. |
I think the change you made here: may disable the automatic recommit of txs. I think you did this to stop an already proposed block getting withdrawn and changed when a new tx came in. Maybe it had wider implications. |
Hmm, maybe a simple fix then is to only disable this for istanbul if we've already sent a pre-prepare |
Expected Behavior
A web3 client waiting for a tx to get included in a block should be notified early enough that a subsequent transaction can land in the very next block.
Current Behavior
We see gaps between transactions during migrations and regular use
e.g https://alfajores-blockscout.celo-testnet.org/address/0xcea3ef8e187490a9d85a1849d98412e5d27d1bb3/transactions?block_number=174320&index=0
The text was updated successfully, but these errors were encountered: