Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Remove Default bound on AccountId types under the xcm directory #4712

Merged
merged 10 commits into from
Jan 21, 2022
Prev Previous commit
Next Next commit
Fixes
  • Loading branch information
KiChjang committed Jan 18, 2022
commit a8c7814a03c634f82223d1af13db08f4be20112b
2 changes: 1 addition & 1 deletion xcm/xcm-simulator/example/src/parachain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ parameter_types! {
pub const KsmLocation: MultiLocation = MultiLocation::parent();
pub const RelayNetwork: NetworkId = NetworkId::Kusama;
pub Ancestry: MultiLocation = Parachain(MsgQueue::parachain_id().into()).into();
pub ParentAccount: AccountId = PalletId(*b"xcm-simulator-relay-chain").into_account();
pub ParentAccount: AccountId = PalletId(*b"xcm-simulator").into_account();
}

pub type LocationToAccountId = (
Expand Down
2 changes: 1 addition & 1 deletion xcm/xcm-simulator/fuzzer/src/parachain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ parameter_types! {
pub const KsmLocation: MultiLocation = MultiLocation::parent();
pub const RelayNetwork: NetworkId = NetworkId::Kusama;
pub Ancestry: MultiLocation = Parachain(MsgQueue::parachain_id().into()).into();
pub ParentAccount: AccountId = PalletId(*b"xcm-simulator-fuzzer-relay-chain").into_account();
pub ParentAccount: AccountId = PalletId(*b"fuzzer").into_account();
}

pub type LocationToAccountId = (
Expand Down