-
Notifications
You must be signed in to change notification settings - Fork 249
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
Fix custom transaction error code clash, and make ethereum tests easier to write #3359
Conversation
98cbdd1
to
1fc8774
Compare
1fc8774
to
79b4863
Compare
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.
Make sense
domains/runtime/evm/Cargo.toml
Outdated
@@ -21,6 +21,7 @@ codec = { package = "parity-scale-codec", version = "3.6.12", default-features = | |||
domain-check-weight = { version = "0.1.0", path = "../../pallets/domain-check-weight", default-features = false } | |||
domain-pallet-executive = { version = "0.1.0", path = "../../pallets/executive", default-features = false } | |||
domain-runtime-primitives = { version = "0.1.0", path = "../../primitives/runtime", default-features = false } | |||
# just here to activate the serde feature |
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.
can't we just enable this feature through the primitives here ?
The comment is confusing without context
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.
I tried that yesterday and it didn’t work. I’ll have another go today.
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.
Well, now it works 🤷
How to review this PR
This PR is the first in a series of PRs which add "private EVM" functionality to subspace. It moves some code around and makes minor fixes.
The second PR in the series implements the private EVM feature, it is #3350.
The third PR in the series is #3360, it applies a storage migration to the Taurus runtime. (This storage isn't currently deployed on mainnet, so a migration isn't needed there.)
What it does
test-ethereum
featureCode contributor checklist: