1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// --- paritytech ---
use pallet_multisig::Config;
// --- darwinia-network ---
use crate::{weights::pallet_multisig::WeightInfo, *};

frame_support::parameter_types! {
	// One storage item; key size is 32; value is size 4+4+16+32 bytes = 56 bytes.
	pub const DepositBase: Balance = pangolin_deposit(1, 88);
	// Additional storage item size of 32 bytes.
	pub const DepositFactor: Balance = pangolin_deposit(0, 32);
	pub const MaxSignatories: u16 = 100;
}

impl Config for Runtime {
	type Call = Call;
	type Currency = Ring;
	type DepositBase = DepositBase;
	type DepositFactor = DepositFactor;
	type Event = Event;
	type MaxSignatories = MaxSignatories;
	type WeightInfo = WeightInfo<Self>;
}