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

Allow balances local refcount #1358

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions runtime/common/src/claims.rs
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,7 @@ mod tests {
type DustRemoval = ();
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Test>;
}

impl vesting::Trait for Test {
Expand Down
1 change: 1 addition & 0 deletions runtime/common/src/crowdfund.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,7 @@ mod tests {
type DustRemoval = ();
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Test>;
}

parameter_types! {
Expand Down
1 change: 1 addition & 0 deletions runtime/common/src/parachains.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1846,6 +1846,7 @@ mod tests {
type Event = ();
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Test>;
}

pallet_staking_reward_curve::build! {
Expand Down
1 change: 1 addition & 0 deletions runtime/common/src/registrar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,7 @@ mod tests {
type Event = ();
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Test>;
}

parameter_types!{
Expand Down
1 change: 1 addition & 0 deletions runtime/common/src/slots.rs
Original file line number Diff line number Diff line change
Expand Up @@ -945,6 +945,7 @@ mod tests {
type DustRemoval = ();
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Test>;
}

thread_local! {
Expand Down
1 change: 1 addition & 0 deletions runtime/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ impl balances::Trait for Runtime {
type Event = Event;
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Runtime>;
}

parameter_types! {
Expand Down
1 change: 1 addition & 0 deletions runtime/polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ impl balances::Trait for Runtime {
type Event = Event;
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Runtime>;
}

parameter_types! {
Expand Down
1 change: 1 addition & 0 deletions runtime/test-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ impl balances::Trait for Runtime {
type Event = Event;
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Runtime>;
}

parameter_types! {
Expand Down
1 change: 1 addition & 0 deletions runtime/westend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ impl balances::Trait for Runtime {
type Event = Event;
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type AccountRef = balances::SystemAccountRef<Runtime>;
}

parameter_types! {
Expand Down