-
Notifications
You must be signed in to change notification settings - Fork 1k
pallet-xcm
: extract precompiles to a separate crate
#9985
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
Conversation
/cmd prdoc --audience runtime_dev --bump minor |
All GitHub workflows were cancelled due to failure one of the required jobs. |
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.
Nice cleanup
@tiagobndr please fix the check licenses job. |
This PR extracts the XCM precompile from
pallet-xcm
into a new standalone cratepallet-xcm-precompiles
to resolve an unwanted dependency issue. Previously, the XCM precompile was implemented directly inpallet-xcm/src/precompiles.rs
, which requiredpallet-xcm
to depend onpallet-revive
, introducing it as a transitive dependency for all parachains usingpallet-xcm
.Closes #9955