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.
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
Use frame umbrella crate in
pallet-proxy
andpallet-multisig
#5995Use frame umbrella crate in
pallet-proxy
andpallet-multisig
#5995Changes from 12 commits
27df8ea
8eefc00
c151681
78b52f2
0305c59
d253bc5
a4b1fd2
e0293d1
253ce3f
ff36c53
2d8323f
687b61f
49a4cc3
4debb8e
556e8ea
a6dfbed
645f2f4
21cd6da
2c910cb
6e6f1ac
bd17cf2
532ee9b
d0120f2
1e7d1bb
4d8b583
cf32fbf
d460295
ca35eed
68c5eea
393d998
2f5eea9
b85d644
9e771ee
66d7396
88265e5
dc2973d
8cd8c73
5918bef
325d62e
801156c
48050fd
d9f132b
61db970
f5ba680
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
This may have been due to my previous work.. Can you check if it can be reverted now?
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.
reverted in 88265e5
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.
Not sure if i follow. You mean
pallet_prelude::*
errors? I tried it locally and seems fine.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.
True, because we removed
Bounded
fromframe_support::pallet_prelude::*
. Reverted in d460295There 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.
This is a good example of where adding more things to frame_support::pallet_prelude::* turned out to be a headache.
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 actually need experimental? I don't see it used in the past AFAICT
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 will remove it as soon as I am a bit more confident in the readiness of the
frame
crate 🙈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.
What we should try here is to see if removing the
feature = runtime
still works?The idea in the
frame
umbrella crate was that for pallet development, you would only need crate itself, and for a runtime, the crate plusruntime
feature.