-
Notifications
You must be signed in to change notification settings - Fork 69
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
feat: Opengov #848
base: master
Are you sure you want to change the base?
feat: Opengov #848
Conversation
Crate versions that have been updated:
Runtime version has been increased. |
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 checked the conviction voting pallet diff and it seems like we are not firing events anymore. Is this intentional?
name: "root", | ||
max_deciding: 1, | ||
decision_deposit: 5_000_000 * UNITS, | ||
prepare_period: 24 * HOURS, |
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.
we need more reasonable periods if we want to use this for runtime upgrades, currently only prepare + confirm + enactment will take 3 days
not even sure why is any prepare period necessary
Co-authored-by: Jakub Pánik <jakub.panik@gmail.com>
feat: Opengov conviction voting pallet 1.11
fix: opengov conviction pallet patch3 branch
type RegistryOrigin = EnsureRoot<AccountId>; | ||
type UpdateOrigin = SuperMajorityTechCommittee; | ||
type RegistryOrigin = EitherOf<EnsureRoot<Self::AccountId>, GeneralAdmin>; | ||
type UpdateOrigin = EitherOf<EnsureRoot<Self::AccountId>, GeneralAdmin>; |
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 should be doable by tech com as it includes emergency banning of assets
This PR adds OpenGov which for some time will run in parallel to gov v1.
TODO:
Treasurer
origin to control the Treasury account