From 88fe94516cf7c802e20aae3846d684c108765757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= <git@kchr.de> Date: Sun, 14 Apr 2024 22:39:40 +0200 Subject: [PATCH] rococo_contracts: Adds missing migration (#4112) Co-authored-by: Liam Aharon <liam.aharon@hotmail.com> --- .../runtimes/contracts/contracts-rococo/src/contracts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs b/cumulus/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs index 171ac6a9528..fcd786711bb 100644 --- a/cumulus/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs +++ b/cumulus/parachains/runtimes/contracts/contracts-rococo/src/contracts.rs @@ -71,7 +71,7 @@ impl Config for Runtime { type MaxDebugBufferLen = ConstU32<{ 2 * 1024 * 1024 }>; type MaxDelegateDependencies = ConstU32<32>; type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent; - type Migrations = (); + type Migrations = (pallet_contracts::migration::v16::Migration<Runtime>,); type RuntimeHoldReason = RuntimeHoldReason; type Debug = (); type Environment = (); -- GitLab