Skip to content

Commit 7439a41

Browse files
committed
feat: update CodeHashLockupDepositPercent value
1 parent 8c44754 commit 7439a41

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

pallets/xvm/src/mock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ parameter_types! {
9999
pub const DepositPerByte: Balance = 1_000;
100100
pub const DefaultDepositLimit: Balance = 1_000;
101101
pub const MaxDelegateDependencies: u32 = 32;
102-
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30);
102+
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(10);
103103
pub Schedule: pallet_contracts::Schedule<TestRuntime> = Default::default();
104104
}
105105

runtime/astar/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ parameter_types! {
665665
// Fallback value if storage deposit limit not set by the user
666666
pub const DefaultDepositLimit: Balance = contracts_deposit(16, 16 * 1024);
667667
pub const MaxDelegateDependencies: u32 = 32;
668-
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30);
668+
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(10);
669669
pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();
670670
}
671671

runtime/local/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ parameter_types! {
901901
// Fallback value if storage deposit limit not set by the user
902902
pub const DefaultDepositLimit: Balance = deposit(16, 16 * 1024);
903903
pub const MaxDelegateDependencies: u32 = 32;
904-
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30);
904+
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(10);
905905
pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();
906906
}
907907

runtime/shibuya/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ parameter_types! {
673673
// Fallback value if storage deposit limit not set by the user
674674
pub const DefaultDepositLimit: Balance = contracts_deposit(16, 16 * 1024);
675675
pub const MaxDelegateDependencies: u32 = 32;
676-
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30);
676+
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(10);
677677
pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();
678678
}
679679

runtime/shiden/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ parameter_types! {
631631
// Fallback value if storage deposit limit not set by the user
632632
pub const DefaultDepositLimit: Balance = contracts_deposit(16, 16 * 1024);
633633
pub const MaxDelegateDependencies: u32 = 32;
634-
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30);
634+
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(10);
635635
pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();
636636
}
637637

tests/xcm-simulator/src/mocks/parachain.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ parameter_types! {
210210
pub const DepositPerByte: Balance = MILLISDN / 1_000_000;
211211
pub const DefaultDepositLimit: Balance = 1000 * MILLISDN;
212212
pub const MaxDelegateDependencies: u32 = 32;
213-
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30);
213+
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(10);
214214
pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();
215215
}
216216

0 commit comments

Comments
 (0)