We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fe17a2 commit 5a52b05Copy full SHA for 5a52b05
runtime/testnet/src/config/contracts.rs
@@ -66,9 +66,8 @@ impl pallet_contracts::Config for Runtime {
66
type MaxCodeLen = ConstU32<{ 256 * 1024 }>;
67
type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>;
68
type MaxDelegateDependencies = ConstU32<32>;
69
- type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>;
70
type MaxStorageKeyLen = ConstU32<128>;
71
- type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>;
+ type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>;
72
type Migrations = (pallet_contracts::migration::v16::Migration<Runtime>,);
73
type Randomness = DummyRandomness<Self>;
74
type RuntimeCall = RuntimeCall;
0 commit comments