mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 07:11:03 +00:00
Refactor pallet-state-trie-migration to fungible::* traits (#1801)
## Summary This PR consolidates `pallet-state-trie-migration` as a part of https://github.com/paritytech/polkadot-sdk/issues/226 / https://github.com/paritytech/polkadot-sdk/issues/171: `pallet-state-trie-migration`: - [x] replace `Currency` with `fungible` traits - [x] run benchmarks - [x] refactor to `DefaultConfig` `pallet_nicks`: - [x] remove others: - [x] remove `as Fn*` or `asFun*` stuff based on discussion [here](https://github.com/paritytech/polkadot-sdk/issues/226#issuecomment-1822861445) --------- Co-authored-by: Richard Melkonian <35300528+0xmovses@users.noreply.github.com> Co-authored-by: command-bot <>
This commit is contained in:
@@ -32,10 +32,7 @@ use codec::{Decode, Encode, MaxEncodedLen};
|
||||
use frame_support::{
|
||||
dispatch::GetDispatchInfo,
|
||||
traits::{
|
||||
fungible::{
|
||||
hold::Balanced as FnBalanced, Inspect as FnInspect, Mutate as FnMutate,
|
||||
MutateHold as FnMutateHold,
|
||||
},
|
||||
fungible::{hold::Balanced, Inspect, Mutate, MutateHold},
|
||||
tokens::fungible::Credit,
|
||||
OnUnbalanced,
|
||||
},
|
||||
@@ -49,7 +46,7 @@ use sp_transaction_storage_proof::{
|
||||
|
||||
/// A type alias for the balance type from this pallet's point of view.
|
||||
type BalanceOf<T> =
|
||||
<<T as Config>::Currency as FnInspect<<T as frame_system::Config>::AccountId>>::Balance;
|
||||
<<T as Config>::Currency as Inspect<<T as frame_system::Config>::AccountId>>::Balance;
|
||||
pub type CreditOf<T> = Credit<<T as frame_system::Config>::AccountId, <T as Config>::Currency>;
|
||||
|
||||
// Re-export pallet items so that they can be accessed from the crate namespace.
|
||||
@@ -111,9 +108,9 @@ pub mod pallet {
|
||||
+ GetDispatchInfo
|
||||
+ From<frame_system::Call<Self>>;
|
||||
/// The fungible type for this pallet.
|
||||
type Currency: FnMutate<Self::AccountId>
|
||||
+ FnMutateHold<Self::AccountId, Reason = Self::RuntimeHoldReason>
|
||||
+ FnBalanced<Self::AccountId>;
|
||||
type Currency: Mutate<Self::AccountId>
|
||||
+ MutateHold<Self::AccountId, Reason = Self::RuntimeHoldReason>
|
||||
+ Balanced<Self::AccountId>;
|
||||
/// The overarching runtime hold reason.
|
||||
type RuntimeHoldReason: From<HoldReason>;
|
||||
/// Handler for the unbalanced decrease when fees are burned.
|
||||
|
||||
@@ -50,12 +50,7 @@ impl frame_system::Config for Test {
|
||||
|
||||
#[derive_impl(pallet_balances::config_preludes::TestDefaultConfig as pallet_balances::DefaultConfig)]
|
||||
impl pallet_balances::Config for Test {
|
||||
type Balance = u64;
|
||||
type ExistentialDeposit = ConstU64<1>;
|
||||
type AccountStore = System;
|
||||
type RuntimeHoldReason = RuntimeHoldReason;
|
||||
type RuntimeFreezeReason = RuntimeFreezeReason;
|
||||
type MaxHolds = ConstU32<128>;
|
||||
}
|
||||
|
||||
impl pallet_transaction_storage::Config for Test {
|
||||
|
||||
Reference in New Issue
Block a user