Skip to content

Commit 6c97c09

Browse files
committed
prep v5.44.0
1 parent 6a6e767 commit 6c97c09

File tree

10 files changed

+21
-43
lines changed

10 files changed

+21
-43
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/collator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "astar-collator"
3-
version = "5.43.1"
3+
version = "5.44.0"
44
description = "Astar collator implementation in Rust."
55
build = "build.rs"
66
default-run = "astar-collator"

bin/collator/res/shibuya.raw.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
"codeSubstitutes": {},
2424
"badBlocks": [
2525
"0xc5c531c16010027fcfd11bdfd237fc295763b2ed75459ac7c4087c58f6bd1d50",
26-
"0xbd101496475d0836fb3ddd8d9f737aee858df395f41a5b13a08d67e0b9368da8"
26+
"0xbd101496475d0836fb3ddd8d9f737aee858df395f41a5b13a08d67e0b9368da8",
27+
"0x7f25e29e8b9d2faa201266c8270d860aa61e91069148c358fefe97050da23af1",
28+
"0x972a54a39fc80fb977548d04086dca043c7b911161e307dd79fd7d42ead30eb1"
2729
],
2830
"genesis": {
2931
"raw": {

runtime/astar/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "astar-runtime"
3-
version = "5.43.1"
3+
version = "5.44.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/astar/src/lib.rs

+3-15
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
172172
spec_name: create_runtime_str!("astar"),
173173
impl_name: create_runtime_str!("astar"),
174174
authoring_version: 1,
175-
spec_version: 94,
175+
spec_version: 95,
176176
impl_version: 0,
177177
apis: RUNTIME_API_VERSIONS,
178178
transaction_version: 3,
@@ -718,7 +718,7 @@ impl pallet_contracts::Config for Runtime {
718718
type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent;
719719
type Debug = ();
720720
type Environment = ();
721-
type Migrations = (pallet_contracts::migration::v16::Migration<Runtime>,);
721+
type Migrations = ();
722722
type Xcm = ();
723723
type UploadOrigin = EnsureSigned<<Self as frame_system::Config>::AccountId>;
724724
type InstantiateOrigin = EnsureSigned<<Self as frame_system::Config>::AccountId>;
@@ -1329,19 +1329,7 @@ parameter_types! {
13291329
pub type Migrations = (Unreleased, Permanent);
13301330

13311331
/// Unreleased migrations. Add new ones here:
1332-
pub type Unreleased = (
1333-
// dApp-staking dyn tier threshold migrations
1334-
pallet_dapp_staking::migration::versioned_migrations::V7ToV8<
1335-
Runtime,
1336-
TierThresholds,
1337-
ThresholdVariationPercentage,
1338-
>,
1339-
frame_support::migrations::RemovePallet<
1340-
DmpQueuePalletName,
1341-
<Runtime as frame_system::Config>::DbWeight,
1342-
>,
1343-
pallet_contracts::Migration<Runtime>,
1344-
);
1332+
pub type Unreleased = ();
13451333

13461334
/// Migrations/checks that do not need to be versioned and can run on every upgrade.
13471335
pub type Permanent = (pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,);

runtime/local/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "local-runtime"
3-
version = "5.43.1"
3+
version = "5.44.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shibuya/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shibuya-runtime"
3-
version = "5.43.1"
3+
version = "5.44.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shibuya/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
204204
spec_name: create_runtime_str!("shibuya"),
205205
impl_name: create_runtime_str!("shibuya"),
206206
authoring_version: 1,
207-
spec_version: 136,
207+
spec_version: 137,
208208
impl_version: 0,
209209
apis: RUNTIME_API_VERSIONS,
210210
transaction_version: 3,
@@ -761,7 +761,7 @@ impl pallet_contracts::Config for Runtime {
761761
type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent;
762762
type Debug = ();
763763
type Environment = ();
764-
type Migrations = (pallet_contracts::migration::v16::Migration<Runtime>,);
764+
type Migrations = ();
765765
type Xcm = ();
766766
type UploadOrigin = EnsureSigned<<Self as frame_system::Config>::AccountId>;
767767
type InstantiateOrigin = EnsureSigned<<Self as frame_system::Config>::AccountId>;

runtime/shiden/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shiden-runtime"
3-
version = "5.43.1"
3+
version = "5.44.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shiden/src/lib.rs

+3-15
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
174174
spec_name: create_runtime_str!("shiden"),
175175
impl_name: create_runtime_str!("shiden"),
176176
authoring_version: 1,
177-
spec_version: 133,
177+
spec_version: 134,
178178
impl_version: 0,
179179
apis: RUNTIME_API_VERSIONS,
180180
transaction_version: 3,
@@ -746,7 +746,7 @@ impl pallet_contracts::Config for Runtime {
746746
type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent;
747747
type Debug = ();
748748
type Environment = ();
749-
type Migrations = (pallet_contracts::migration::v16::Migration<Runtime>,);
749+
type Migrations = ();
750750
type Xcm = ();
751751
type UploadOrigin = EnsureSigned<<Self as frame_system::Config>::AccountId>;
752752
type InstantiateOrigin = EnsureSigned<<Self as frame_system::Config>::AccountId>;
@@ -1329,19 +1329,7 @@ parameter_types! {
13291329
pub type Migrations = (Unreleased, Permanent);
13301330

13311331
/// Unreleased migrations. Add new ones here:
1332-
pub type Unreleased = (
1333-
// dApp-staking dyn tier threshold migrations
1334-
pallet_dapp_staking::migration::versioned_migrations::V7ToV8<
1335-
Runtime,
1336-
TierThresholds,
1337-
ThresholdVariationPercentage,
1338-
>,
1339-
frame_support::migrations::RemovePallet<
1340-
DmpQueuePalletName,
1341-
<Runtime as frame_system::Config>::DbWeight,
1342-
>,
1343-
pallet_contracts::Migration<Runtime>,
1344-
);
1332+
pub type Unreleased = ();
13451333

13461334
/// Migrations/checks that do not need to be versioned and can run on every upgrade.
13471335
pub type Permanent = (pallet_xcm::migration::MigrateToLatestXcmVersion<Runtime>,);

0 commit comments

Comments
 (0)