-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add migration to clear unapproved proposals from treasury pallet #5892
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
Merged
davidk-pt
merged 27 commits into
master
from
davidk/remove-proposals-storage-item-from-treasury
Oct 8, 2024
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
547fc0d
Add function to clear unapproved proposals treasury from pallet
766c3a9
Write migration to release bonds to proposers
41d1ad7
Add treasury migration to rococo runtime
a78afec
Fix compilation with try-runtime feature flag
917bd84
Address Muharem's comments
a3c7ad2
Rename to CleanupProposals
4fd8531
Update prdoc/pr_5892.prdoc
davidk-pt 202fa68
Added miration to westend
7a027c3
Fix prdoc
d45feab
Add log/std feature propogation
47bf1d3
Taplo format log/std
438aec0
Update substrate/frame/treasury/src/migration.rs
davidk-pt 6e29f9a
Update substrate/frame/treasury/src/migration.rs
davidk-pt 3765bb4
Add changed runtimes to prdoc
ff8ce16
Address more comments
34fcbfa
Remove westend treasury pallet migration
ac22408
Update prdoc
6e3b7b3
Decrease rococo runtime version
5110d7e
Comment formatting fixes
39ac640
Merge branch 'master' into davidk/remove-proposals-storage-item-from-…
davidk-pt 9b78bfa
Merge branch 'master' into davidk/remove-proposals-storage-item-from-…
shawntabrizi b8abc12
Remove pallet_balances::Config trait bound for migration
2b7097e
Merge branch 'master' into davidk/remove-proposals-storage-item-from-…
davidk-pt c80a395
Formatting fixes
49e1e34
Update prdoc/pr_5892.prdoc
davidk-pt dfe7e1f
Update prdoc/pr_5892.prdoc
davidk-pt 4158d19
Merge branch 'master' into davidk/remove-proposals-storage-item-from-…
seadanda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 | ||
| # See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json | ||
|
|
||
| title: "Treasury: add migration to clean up unapproved deprecated proposals" | ||
|
|
||
| doc: | ||
| - audience: Runtime Dev | ||
| description: | | ||
| It is no longer possible to create `Proposals` storage item in `pallet-treasury` due to migration from | ||
| governance v1 model but there are some `Proposals` whose bonds are still on hold with no way to release them. | ||
| The purpose of this migration is to clear `Proposals` which are stuck and return bonds to the proposers. | ||
|
|
||
| crates: | ||
| - name: pallet-treasury | ||
| bump: patch | ||
| - name: rococo-runtime | ||
| bump: patch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,133 @@ | ||
| // This file is part of Substrate. | ||
|
|
||
| // Copyright (C) Parity Technologies (UK) Ltd. | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| //! Treasury pallet migrations. | ||
|
|
||
| use super::*; | ||
| use alloc::collections::BTreeSet; | ||
| #[cfg(feature = "try-runtime")] | ||
| use alloc::vec::Vec; | ||
| use core::marker::PhantomData; | ||
| use frame_support::{defensive, traits::OnRuntimeUpgrade}; | ||
|
|
||
| /// The log target for this pallet. | ||
| const LOG_TARGET: &str = "runtime::treasury"; | ||
|
|
||
| pub mod cleanup_proposals { | ||
| use super::*; | ||
|
|
||
| /// Migration to cleanup unapproved proposals to return the bonds back to the proposers. | ||
| /// Proposals can no longer be created and the `Proposal` storage item will be removed in the | ||
| /// future. | ||
| /// | ||
| /// `UnreserveWeight` returns `Weight` of `unreserve_balance` operation which is perfomed during | ||
| /// this migration. | ||
| pub struct Migration<T, I, UnreserveWeight>(PhantomData<(T, I, UnreserveWeight)>); | ||
|
|
||
| impl<T: Config<I>, I: 'static, UnreserveWeight: Get<Weight>> OnRuntimeUpgrade | ||
| for Migration<T, I, UnreserveWeight> | ||
| { | ||
| fn on_runtime_upgrade() -> frame_support::weights::Weight { | ||
| let mut approval_index = BTreeSet::new(); | ||
| for approval in Approvals::<T, I>::get().iter() { | ||
| approval_index.insert(*approval); | ||
| } | ||
|
|
||
| let mut proposals_processed = 0; | ||
| for (proposal_index, p) in Proposals::<T, I>::iter() { | ||
| if !approval_index.contains(&proposal_index) { | ||
| let err_amount = T::Currency::unreserve(&p.proposer, p.bond); | ||
| if err_amount.is_zero() { | ||
| Proposals::<T, I>::remove(proposal_index); | ||
| log::info!( | ||
| target: LOG_TARGET, | ||
| "Released bond amount of {:?} to proposer {:?}", | ||
| p.bond, | ||
| p.proposer, | ||
| ); | ||
| } else { | ||
| defensive!( | ||
| "err_amount is non zero for proposal {:?}", | ||
| (proposal_index, err_amount) | ||
| ); | ||
| Proposals::<T, I>::mutate_extant(proposal_index, |proposal| { | ||
| proposal.value = err_amount; | ||
| }); | ||
| log::info!( | ||
| target: LOG_TARGET, | ||
| "Released partial bond amount of {:?} to proposer {:?}", | ||
| p.bond - err_amount, | ||
| p.proposer, | ||
| ); | ||
| } | ||
| proposals_processed += 1; | ||
| } | ||
| } | ||
|
|
||
| log::info!( | ||
| target: LOG_TARGET, | ||
| "Migration for pallet-treasury finished, released {} proposal bonds.", | ||
| proposals_processed, | ||
| ); | ||
|
|
||
| // calculate and return migration weights | ||
| let approvals_read = 1; | ||
| T::DbWeight::get().reads_writes( | ||
| proposals_processed as u64 + approvals_read, | ||
| proposals_processed as u64, | ||
| ) + UnreserveWeight::get() * proposals_processed | ||
| } | ||
|
|
||
| #[cfg(feature = "try-runtime")] | ||
| fn pre_upgrade() -> Result<Vec<u8>, sp_runtime::TryRuntimeError> { | ||
| let value = ( | ||
| Proposals::<T, I>::iter_values().count() as u32, | ||
| Approvals::<T, I>::get().len() as u32, | ||
| ); | ||
| log::info!( | ||
| target: LOG_TARGET, | ||
| "Proposals and Approvals count {:?}", | ||
| value, | ||
| ); | ||
| Ok(value.encode()) | ||
| } | ||
|
|
||
| #[cfg(feature = "try-runtime")] | ||
| fn post_upgrade(state: Vec<u8>) -> Result<(), sp_runtime::TryRuntimeError> { | ||
| let (old_proposals_count, old_approvals_count) = | ||
| <(u32, u32)>::decode(&mut &state[..]).expect("Known good"); | ||
| let new_proposals_count = Proposals::<T, I>::iter_values().count() as u32; | ||
| let new_approvals_count = Approvals::<T, I>::get().len() as u32; | ||
|
|
||
| log::info!( | ||
| target: LOG_TARGET, | ||
| "Proposals and Approvals count {:?}", | ||
| (new_proposals_count, new_approvals_count), | ||
| ); | ||
|
|
||
| ensure!( | ||
| new_proposals_count <= old_proposals_count, | ||
| "Proposals after migration should be less or equal to old proposals" | ||
| ); | ||
| ensure!( | ||
| new_approvals_count == old_approvals_count, | ||
| "Approvals after migration should remain the same" | ||
| ); | ||
| Ok(()) | ||
| } | ||
| } | ||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.