-
Notifications
You must be signed in to change notification settings - Fork 23
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
Recovery pallet added and configured #512
base: develop
Are you sure you want to change the base?
Conversation
@@ -249,6 +251,7 @@ std = [ | |||
"pallet-offences/std", | |||
"pallet-preimage/std", | |||
"pallet-randomness-collective-flip/std", | |||
"pallet-recovery/std", |
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.
Probably we need to add "pallet-recovery/try-runtime"
below if it has this 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.
I think it works without it
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.
Of course it works, but it is necessary for cases when we use try-runtime
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.
Is it relevant?
It is |
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 would be an interesting feature to have for n00b users to have less fear about self-custodial. Let's consider implementing as an "optional extra" @Tieumsan
|
||
impl pallet_recovery::Config for Runtime { | ||
type RuntimeEvent = RuntimeEvent; | ||
type WeightInfo = pallet_recovery::weights::SubstrateWeight<Runtime>; |
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 think we're supposed to benchmark it ourselves (with our reference hardware)
No description provided.