-
Notifications
You must be signed in to change notification settings - Fork 47
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
feat: TxDAG generation v0.1 version #187
Open
welkin22
wants to merge
41
commits into
main
Choose a base branch
from
feature/TxDAG-v0.1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sunny2022da
requested review from
galaio,
sunny2022da and
andyzhang2023
and removed request for
bnoieh and
redhdx
September 26, 2024 03:29
txdag: opt rw record flag; txdag: fix some broken UTs; txdag: opt some logic;
evm: fix failed tx rwSet collecting;
mvstates: opt async dep generation; mvstates: opt resolve dep logic; mvstates: fix async dep gen deadlock issue; miner: support record sysytem tx rwset; miner: opt txdag enable checking; txdag: fix system tx finalise issue; mvstate: using pending writes to accelerate txdag generation; txdag: test snappy compress ratio; txdag: add more bench tests; txdag: reduce mem alloc and async resolve tx dependency; txdag: add excluded flag; mvstates: generate txdag with excluded flag; txdag: support multi flags, and supported in pevm; txdag: opt TxDAG rwset collecting & generating; txdag: opt txdag encoding, reduce rlp size
* txDAG transfer * encode/decode txDAG data with ABI * set txDAG receiver to a special address --------- Co-authored-by: andyzhang2023 <andyzhang2023@gmail.com> merge conflict fix conflict
…tions are executed
…tions are executed
mvstates: support txdepMap to produce txdag; mvststes: using struct in rwset;
txdag: refactor async logic, reduce concurrent logic; txdag: using slice cache rather than sending chan directly; txdag: opt gc issue; txdag: support init cache pool;
worker: add UT to test txdag gasless block generation;
welkin22
force-pushed
the
feature/TxDAG-v0.1
branch
from
November 12, 2024 02:13
e9d3471
to
42d915f
Compare
sunny2022da
reviewed
Nov 12, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, still need review from others
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Mainly includes the following contents:
Rationale
Version 0.1 of the TxDAG generation code is based on #149 with some minor modifications.
Example
Add two parameters to geth:
--parallel.txdag
will enable the TxDAG generation feature, whileparallel.txdagsenderpriv
specifies the private key of the sender for the transaction into which the generated TxDAG data is inserted.