We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
construct_runtime!
default
Currently we are still declaring for every pallet all the parts we want to use for it:
runtimes/relay/polkadot/src/lib.rs
Line 1437 in d67b905
Instead we can just write:
Babe: pallet_babe = 2,
There is no real reason to continue using the old syntax of always declaring all parts and it is also more error prone.
The text was updated successfully, but these errors were encountered:
@bkchr I think this issue is solved here: #152
Sorry, something went wrong.
Yes! thank you
No branches or pull requests
Currently we are still declaring for every pallet all the parts we want to use for it:
runtimes/relay/polkadot/src/lib.rs
Line 1437 in d67b905
Instead we can just write:
There is no real reason to continue using the old syntax of always declaring all parts and it is also more error prone.
The text was updated successfully, but these errors were encountered: