diff --git a/runtime/altair/src/lib.rs b/runtime/altair/src/lib.rs index 47e56e71b1..81b0e48424 100644 --- a/runtime/altair/src/lib.rs +++ b/runtime/altair/src/lib.rs @@ -848,7 +848,7 @@ impl pallet_treasury::Config for Runtime { type Burn = Burn; // we burn and dont handle the unbalance type BurnDestination = (); - type Currency = Balances; + type Currency = Tokens; type MaxApprovals = MaxApprovals; // slashed amount goes to treasury account type OnSlash = Treasury; diff --git a/runtime/centrifuge/src/lib.rs b/runtime/centrifuge/src/lib.rs index b573101928..8ae6b999c4 100644 --- a/runtime/centrifuge/src/lib.rs +++ b/runtime/centrifuge/src/lib.rs @@ -1000,7 +1000,7 @@ impl pallet_treasury::Config for Runtime { type Burn = Burn; // we burn and dont handle the unbalance type BurnDestination = (); - type Currency = Balances; + type Currency = Tokens; type MaxApprovals = MaxApprovals; // slashed amount goes to treasury account type OnSlash = Treasury; diff --git a/runtime/development/src/lib.rs b/runtime/development/src/lib.rs index b06c335093..c7c4f0ad41 100644 --- a/runtime/development/src/lib.rs +++ b/runtime/development/src/lib.rs @@ -922,7 +922,7 @@ impl pallet_treasury::Config for Runtime { type Burn = Burn; // we burn and dont handle the unbalance type BurnDestination = (); - type Currency = Balances; + type Currency = Tokens; type MaxApprovals = MaxApprovals; // slashed amount goes to treasury account type OnSlash = Treasury;