Skip to content

Commit 5a52b05

Browse files
committed
fix: mistake after rebase
1 parent 3fe17a2 commit 5a52b05

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

runtime/testnet/src/config/contracts.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,8 @@ impl pallet_contracts::Config for Runtime {
6666
type MaxCodeLen = ConstU32<{ 256 * 1024 }>;
6767
type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>;
6868
type MaxDelegateDependencies = ConstU32<32>;
69-
type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>;
7069
type MaxStorageKeyLen = ConstU32<128>;
71-
type MaxTransientStorageSize = ConstU32<{ 1024 * 1024 }>;
70+
type MaxTransientStorageSize = ConstU32<{ 1 * 1024 * 1024 }>;
7271
type Migrations = (pallet_contracts::migration::v16::Migration<Runtime>,);
7372
type Randomness = DummyRandomness<Self>;
7473
type RuntimeCall = RuntimeCall;

0 commit comments

Comments
 (0)