Skip to content

Commit 366b101

Browse files
committed
Merge branch 'ao-collator-parent-head-data' into ao-send-parent-head-data
* ao-collator-parent-head-data: Fix call enum's metadata regression (#3513) Enable elastic scaling node feature in local testnets genesis (#3509) update development setup in sdk-docs (#3506) Fix accidental no-shows on node restart (#3277) Remove `AssignmentProviderConfig` and use parameters from `HostConfiguration` instead (#3181) [Deprecation] Remove sp_weights::OldWeight (#3491) Fixup multi-collator parachain transition to async backing (#3510) Multi-Block-Migrations, `poll` hook and new System callbacks (#1781) Snowbridge - Extract Ethereum Chain ID (#3501) PVF: re-preparing artifact on failed runtime construction (#3187) Add documentation around FRAME Offchain workers (#3463) [prdoc] Optional SemVer bumps and Docs (#3441) rpc-v2/tx/tests: Add transaction broadcast tests and check propagated tx status (#3193)
2 parents e2751f5 + f44d58e commit 366b101

File tree

187 files changed

+8595
-2285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+8595
-2285
lines changed

Cargo.lock

Lines changed: 105 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@ members = [
352352
"substrate/frame/membership",
353353
"substrate/frame/merkle-mountain-range",
354354
"substrate/frame/message-queue",
355+
"substrate/frame/migrations",
355356
"substrate/frame/mixnet",
356357
"substrate/frame/multisig",
357358
"substrate/frame/nft-fractionalization",

bridges/snowbridge/pallets/ethereum-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "snowbridge-pallet-ethereum-client"
33
description = "Snowbridge Ethereum Client Pallet"
4-
version = "0.0.0"
4+
version = "0.2.0"
55
authors = ["Snowfork <[email protected]>"]
66
edition.workspace = true
77
repository.workspace = true

bridges/snowbridge/pallets/inbound-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "snowbridge-pallet-inbound-queue"
33
description = "Snowbridge Inbound Queue Pallet"
4-
version = "0.0.0"
4+
version = "0.2.0"
55
authors = ["Snowfork <[email protected]>"]
66
edition.workspace = true
77
repository.workspace = true

bridges/snowbridge/pallets/inbound-queue/fixtures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "snowbridge-pallet-inbound-queue-fixtures"
33
description = "Snowbridge Inbound Queue Test Fixtures"
4-
version = "0.9.0"
4+
version = "0.10.0"
55
authors = ["Snowfork <[email protected]>"]
66
edition.workspace = true
77
repository.workspace = true

bridges/snowbridge/pallets/inbound-queue/src/mock.rs

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use super::*;
44

55
use frame_support::{
6-
parameter_types,
6+
derive_impl, parameter_types,
77
traits::{ConstU128, ConstU32, Everything},
88
weights::IdentityFee,
99
};
@@ -47,10 +47,9 @@ parameter_types! {
4747

4848
type Balance = u128;
4949

50+
#[derive_impl(frame_system::config_preludes::TestDefaultConfig as frame_system::DefaultConfig)]
5051
impl frame_system::Config for Test {
5152
type BaseCallFilter = Everything;
52-
type BlockWeights = ();
53-
type BlockLength = ();
5453
type RuntimeOrigin = RuntimeOrigin;
5554
type RuntimeCall = RuntimeCall;
5655
type RuntimeTask = RuntimeTask;
@@ -60,16 +59,8 @@ impl frame_system::Config for Test {
6059
type Lookup = IdentityLookup<Self::AccountId>;
6160
type RuntimeEvent = RuntimeEvent;
6261
type BlockHashCount = BlockHashCount;
63-
type DbWeight = ();
64-
type Version = ();
6562
type PalletInfo = PalletInfo;
6663
type AccountData = pallet_balances::AccountData<u128>;
67-
type OnNewAccount = ();
68-
type OnKilledAccount = ();
69-
type SystemWeightInfo = ();
70-
type SS58Prefix = ();
71-
type OnSetCode = ();
72-
type MaxConsumers = frame_support::traits::ConstU32<16>;
7364
type Nonce = u64;
7465
type Block = Block;
7566
}

bridges/snowbridge/pallets/outbound-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "snowbridge-pallet-outbound-queue"
33
description = "Snowbridge Outbound Queue Pallet"
4-
version = "0.0.0"
4+
version = "0.2.0"
55
authors = ["Snowfork <[email protected]>"]
66
edition.workspace = true
77
repository.workspace = true

bridges/snowbridge/pallets/outbound-queue/merkle-tree/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "snowbridge-outbound-queue-merkle-tree"
33
description = "Snowbridge Outbound Queue Merkle Tree"
4-
version = "0.1.1"
4+
version = "0.3.0"
55
authors = ["Snowfork <[email protected]>"]
66
edition.workspace = true
77
repository.workspace = true

bridges/snowbridge/pallets/outbound-queue/runtime-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "snowbridge-outbound-queue-runtime-api"
33
description = "Snowbridge Outbound Queue Runtime API"
4-
version = "0.0.0"
4+
version = "0.2.0"
55
authors = ["Snowfork <[email protected]>"]
66
edition.workspace = true
77
repository.workspace = true

bridges/snowbridge/pallets/outbound-queue/src/mock.rs

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use super::*;
44

55
use frame_support::{
6-
parameter_types,
6+
derive_impl, parameter_types,
77
traits::{Everything, Hooks},
88
weights::IdentityFee,
99
};
@@ -37,10 +37,9 @@ parameter_types! {
3737
pub const BlockHashCount: u64 = 250;
3838
}
3939

40+
#[derive_impl(frame_system::config_preludes::TestDefaultConfig as frame_system::DefaultConfig)]
4041
impl frame_system::Config for Test {
4142
type BaseCallFilter = Everything;
42-
type BlockWeights = ();
43-
type BlockLength = ();
4443
type RuntimeOrigin = RuntimeOrigin;
4544
type RuntimeCall = RuntimeCall;
4645
type RuntimeTask = RuntimeTask;
@@ -50,16 +49,7 @@ impl frame_system::Config for Test {
5049
type Lookup = IdentityLookup<Self::AccountId>;
5150
type RuntimeEvent = RuntimeEvent;
5251
type BlockHashCount = BlockHashCount;
53-
type DbWeight = ();
54-
type Version = ();
5552
type PalletInfo = PalletInfo;
56-
type AccountData = ();
57-
type OnNewAccount = ();
58-
type OnKilledAccount = ();
59-
type SystemWeightInfo = ();
60-
type SS58Prefix = ();
61-
type OnSetCode = ();
62-
type MaxConsumers = frame_support::traits::ConstU32<16>;
6353
type Nonce = u64;
6454
type Block = Block;
6555
}

0 commit comments

Comments
 (0)