Skip to content

Commit

Permalink
style: remove unnecessary multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
Daanvdplas committed Dec 21, 2024
1 parent 013173b commit 373225e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/devnet/src/config/contracts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl pallet_contracts::Config for Runtime {
type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>;
type MaxDelegateDependencies = ConstU32<32>;
type MaxStorageKeyLen = ConstU32<128>;
type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>;
type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>;
type Migrations = ();
type Randomness = DummyRandomness<Self>;
type RuntimeCall = RuntimeCall;
Expand Down
2 changes: 1 addition & 1 deletion runtime/testnet/src/config/contracts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ impl pallet_contracts::Config for Runtime {
type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>;
type MaxDelegateDependencies = ConstU32<32>;
type MaxStorageKeyLen = ConstU32<128>;
type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>;
type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>;
type Migrations = (pallet_contracts::migration::v16::Migration<Runtime>,);
type Randomness = DummyRandomness<Self>;
type RuntimeCall = RuntimeCall;
Expand Down

0 comments on commit 373225e

Please sign in to comment.