-
Notifications
You must be signed in to change notification settings - Fork 3
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
In memory tx pool #63
Comments
Think we should store executed txs off-chain for explorers and wallets. |
I think we have two kinds of transactions to store: pending and executed transactions. Pending Transactions are sent by the users to the coordinator, who then later picks from those to make a batch. Here list some of their properties:
Executed transactions are in the batches synced from the Eth1 chain.
I suggest keeping pending transactions in memory and executed transactions in the database to best serve the above properties. |
We now have our tx pool implemented as accessing from disk/database.
We can have pending tx in memory. While executed tx are already available on chain, maybe we don't need to store them at all.
The text was updated successfully, but these errors were encountered: