-
Notifications
You must be signed in to change notification settings - Fork 123
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
[chain/transaction] Introduce Multi-Action Support #698
Closed
Closed
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
6322a35
setup framework for multi-action
patrick-ogrady 70905e2
begin spike on multi-action handling
patrick-ogrady 579dad0
add Action limit to Rules and lint
wlawt 32abc4b
introduce GetActionID
wlawt c5e4963
use actionID throughout chain/transaction
wlawt d8c24d9
update StateKeys to use actionID
wlawt 84655de
fix transaction.StateKeys
wlawt a47f87d
use action in for loop
wlawt 7b4d77c
fix handleRevert
wlawt 66baa94
rename to t.Actions
wlawt 21644ef
fix uint8 errors
wlawt bd656aa
fix lint for transaction.Execute
wlawt 6d6d240
fix more lints
wlawt a89720c
morpheusVM compiles now
wlawt a338e5d
Merge branch 'main' into multi-action
wlawt 60a63f5
remove some warp code still
wlawt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Do we want a 2d array with a length of
numTxs
instead? or flatten all the results into one array? not sure of the consequences of doing the flatten approach right now