Skip to content
Snippets Groups Projects

feat: add multisig pallet

Merged Pascal Engélibert requested to merge multisig into master
All threads resolved!
4 files
+ 40
0
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 11
0
@@ -132,6 +132,16 @@ common_runtime::pallets_config! {
@@ -132,6 +132,16 @@ common_runtime::pallets_config! {
type Event = Event;
type Event = Event;
type Call = Call;
type Call = Call;
}
}
 
 
impl pallet_multisig::Config for Runtime {
 
type Event = Event;
 
type Call = Call;
 
type Currency = Balances;
 
type DepositBase = DepositBase;
 
type DepositFactor = DepositFactor;
 
type MaxSignatories = MaxSignatories;
 
type WeightInfo = ();
 
}
}
}
// Create the runtime by composing the FRAME pallets that were previously configured.
// Create the runtime by composing the FRAME pallets that were previously configured.
@@ -145,6 +155,7 @@ construct_runtime!(
@@ -145,6 +155,7 @@ construct_runtime!(
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage},
RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage},
Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event},
Grandpa: pallet_grandpa::{Pallet, Call, Storage, Config, Event},
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
 
Multisig: pallet_multisig::{Pallet, Call, Storage, Event<T>},
TransactionPayment: pallet_transaction_payment::{Pallet, Storage},
TransactionPayment: pallet_transaction_payment::{Pallet, Storage},
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>},
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>},
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage},
UdAccountsStorage: pallet_ud_accounts_storage::{Pallet, Config<T>, Storage},
Loading