Skip to content

Commit

Permalink
Fix multisig deposit requirements (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayden Brewer authored Oct 25, 2023
1 parent 93800bf commit 3fe8a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,9 +473,9 @@ impl pallet_sudo::Config for Runtime {

parameter_types! {
// One storage item; key size is 32; value is size 4+4+16+32 bytes = 56 bytes.
pub const DepositBase: Balance = (1) as Balance * 2_000 * 10_000_000 + (88 as Balance) * 100 * 1_000_000;
pub const DepositBase: Balance = (1) as Balance * 2_000 * 10_000 + (88 as Balance) * 100 * 10_000;
// Additional storage item size of 32 bytes.
pub const DepositFactor: Balance = (0) as Balance * 2_000 * 10_000_000 + (32 as Balance) * 100 * 1_000_000;
pub const DepositFactor: Balance = (0) as Balance * 2_000 * 10_000 + (32 as Balance) * 100 * 10_000;
pub const MaxSignatories: u32 = 100;
}

Expand Down

0 comments on commit 3fe8a45

Please sign in to comment.