mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 00:57:57 +00:00
Make Multisig Pallet Bounded (#12457)
* Bounded multisig * just use u32 Co-authored-by: parity-processbot <>
This commit is contained in:
@@ -143,7 +143,7 @@ impl pallet_balances::Config for Test {
|
||||
parameter_types! {
|
||||
pub const MultisigDepositBase: u64 = 1;
|
||||
pub const MultisigDepositFactor: u64 = 1;
|
||||
pub const MaxSignatories: u16 = 3;
|
||||
pub const MaxSignatories: u32 = 3;
|
||||
}
|
||||
|
||||
impl example::Config for Test {}
|
||||
|
||||
Reference in New Issue
Block a user