From 590cd4b08704cc75b6b5dce9c072ad6c146a80da Mon Sep 17 00:00:00 2001 From: brenzi Date: Fri, 9 Feb 2024 13:59:23 +0100 Subject: [PATCH] fix CannotCreateHold for preimage-note (#262) * fix CannotCreateHold for preimage-note * bump versions --- Cargo.lock | 4 ++-- polkadot-parachains/Cargo.toml | 2 +- polkadot-parachains/integritee-runtime/Cargo.toml | 2 +- polkadot-parachains/integritee-runtime/src/lib.rs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 31f41063..ff541e62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4173,7 +4173,7 @@ dependencies = [ [[package]] name = "integritee-collator" -version = "1.8.0" +version = "1.8.1" dependencies = [ "assert_cmd", "async-trait", @@ -4255,7 +4255,7 @@ dependencies = [ [[package]] name = "integritee-runtime" -version = "1.8.45" +version = "1.8.46" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-dmp-queue", diff --git a/polkadot-parachains/Cargo.toml b/polkadot-parachains/Cargo.toml index d553df1a..948176d0 100644 --- a/polkadot-parachains/Cargo.toml +++ b/polkadot-parachains/Cargo.toml @@ -2,7 +2,7 @@ name = "integritee-collator" description = "The Integritee parachain collator binary" # align major.minor revision with the runtimes. bump patch revision ad lib. make this the github release tag -version = "1.8.0" +version = "1.8.1" authors = ["Integritee AG "] homepage = "https://integritee.network/" repository = "https://github.com/integritee-network/parachain" diff --git a/polkadot-parachains/integritee-runtime/Cargo.toml b/polkadot-parachains/integritee-runtime/Cargo.toml index 983ebfb8..f5a8a159 100644 --- a/polkadot-parachains/integritee-runtime/Cargo.toml +++ b/polkadot-parachains/integritee-runtime/Cargo.toml @@ -2,7 +2,7 @@ name = "integritee-runtime" description = "The Integritee parachain runtime" # patch revision must match runtime spec_version -version = "1.8.45" +version = "1.8.46" authors = ["Integritee AG "] homepage = "https://integritee.network/" repository = "https://github.com/integritee-network/parachain" diff --git a/polkadot-parachains/integritee-runtime/src/lib.rs b/polkadot-parachains/integritee-runtime/src/lib.rs index 1d572642..02ac75c9 100644 --- a/polkadot-parachains/integritee-runtime/src/lib.rs +++ b/polkadot-parachains/integritee-runtime/src/lib.rs @@ -116,7 +116,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("integritee-parachain"), impl_name: create_runtime_str!("integritee-full"), authoring_version: 2, - spec_version: 45, + spec_version: 46, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 6, @@ -253,7 +253,7 @@ impl pallet_balances::Config for Runtime { type RuntimeHoldReason = RuntimeHoldReason; type RuntimeFreezeReason = (); type FreezeIdentifier = (); - type MaxHolds = (); + type MaxHolds = MaxReserves; type MaxFreezes = (); }