pallet_governance/
ext.rs

1use polkadot_sdk::frame_support::traits::Currency;
2
3pub(super) type BalanceOf<T> = <<T as crate::Config>::Currency as Currency<
4    <T as polkadot_sdk::frame_system::Config>::AccountId,
5>>::Balance;
6
7pub(super) type AccountIdOf<T> = <T as polkadot_sdk::frame_system::Config>::AccountId;