Skip to content
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

Remove Identity from Kusama Relay #315

Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ccef841
remove identity from kusama relay
joepetrowski May 18, 2024
1f024f9
remove emulated tests
joepetrowski May 18, 2024
abad601
merge main
joepetrowski May 18, 2024
2953271
renames
joepetrowski May 18, 2024
9de5e21
changelog
joepetrowski May 18, 2024
f18365f
remove migrator from people chain
joepetrowski May 19, 2024
f5abded
Merge remote-tracking branch 'origin' into remove-kusama-relay-identity
joepetrowski May 21, 2024
2b582af
changelog
joepetrowski May 21, 2024
f650f28
Update relay/kusama/src/lib.rs
joepetrowski May 22, 2024
2e4c593
Merge branch 'main' into remove-kusama-relay-identity
joepetrowski May 22, 2024
35fef62
change proxy
joepetrowski May 22, 2024
3972f48
Merge branch 'main' into remove-kusama-relay-identity
joepetrowski May 29, 2024
e0d600e
Update CHANGELOG.md
joepetrowski May 30, 2024
3624f68
use codec indices
joepetrowski May 30, 2024
104a046
also remove migrator pallet
joepetrowski May 30, 2024
38482ff
remove pallet from parachain too
joepetrowski May 30, 2024
89a2f5b
judgement proxy migration
liamaharon Jun 2, 2024
6644f4a
clippy
liamaharon Jun 2, 2024
4404b34
remove k/v when proxies is empty
liamaharon Jun 3, 2024
9f070f1
fix: comment
liamaharon Jun 6, 2024
276adc5
Update relay/kusama/src/lib.rs
liamaharon Jun 6, 2024
60294a2
fix: use .min
liamaharon Jun 6, 2024
5ac3c58
debug asset deposit is zero prior to removing proxies
liamaharon Jun 6, 2024
d58802e
merge main
joepetrowski Jun 7, 2024
57566a5
remove benchmark
joepetrowski Jun 7, 2024
40ea467
Merge pull request #4 from liamaharon/liam-proxy-migration
joepetrowski Jun 10, 2024
0a065b6
Update CHANGELOG.md
joepetrowski Jun 11, 2024
df0a4c6
fix changelog
joepetrowski Jun 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Changed

joepetrowski marked this conversation as resolved.
Show resolved Hide resolved
### Added

- Staking runtime api to check if reward is pending for an era ([polkadot-fellows/runtimes#318](https://github.com/polkadot-fellows/runtimes/pull/318))
- Allow any parachain to have bidirectional channel with any system parachains ([polkadot-fellows/runtimes#329](https://github.com/polkadot-fellows/runtimes/pull/329))

### Removed

- Removed Identity-related code from Kusama Relay Chain ([polkadot-fellows/runtimes#315](https://github.com/polkadot-fellows/runtimes/pull/315))

### Fixed

- Handle extra erroneous consumer reference when a nomination pool is destroying ([polkadot-fellows/runtimes#318](https://github.com/polkadot-fellows/runtimes/pull/318))
Expand Down
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ decl_test_parachains! {
PolkadotXcm: people_kusama_runtime::PolkadotXcm,
Balances: people_kusama_runtime::Balances,
Identity: people_kusama_runtime::Identity,
IdentityMigrator: people_kusama_runtime::IdentityMigrator,
}
},
}
Expand Down
2 changes: 0 additions & 2 deletions integration-tests/emulated/chains/relays/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ decl_test_relay_chains! {
XcmPallet: kusama_runtime::XcmPallet,
Balances: kusama_runtime::Balances,
Hrmp: kusama_runtime::Hrmp,
Identity: kusama_runtime::Identity,
IdentityMigrator: kusama_runtime::IdentityMigrator,
Treasury: kusama_runtime::Treasury,
AssetRate: kusama_runtime::AssetRate,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@
// See the License for the specific language governing permissions and
// limitations under the License.

mod reap_identity;
mod teleport;
Loading
Loading