Type Definition pallet_multisig::pallet::Multisigs

source ·
pub type Multisigs<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageMultisigs<T>, Twox64Concat, T::AccountId, Blake2_128Concat, [u8; 32], Multisig<BlockNumberFor<T>, <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, T::AccountId, T::MaxSignatories>>;
Expand description

The set of open multisig operations.

Storage type is StorageDoubleMap with key1 type T :: AccountId, key2 type [u8 ; 32] and value type Multisig < BlockNumberFor < T >, BalanceOf < T >, T :: AccountId, T :: MaxSignatories >.