Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Small cosmetic nits #1679

Merged
merged 1 commit into from
Sep 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ members = [
"primitives/parachain-inherent",
"primitives/timestamp",
"primitives/utility",
"polkadot-parachain/",
"polkadot-parachain",
"parachains/common",
"parachains/pallets/parachain-info",
"parachains/pallets/ping",
Expand Down
3 changes: 0 additions & 3 deletions client/relay-chain-inprocess-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,3 @@ sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master
# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }

# Cumulus
cumulus-test-service = { path = "../../test/service" }
3 changes: 1 addition & 2 deletions client/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,8 @@ where
task_manager
.spawn_essential_handle()
.spawn("cumulus-pov-recovery", None, pov_recovery.run());

cumulus_client_collator::start_collator(cumulus_client_collator::StartCollatorParams {
runtime_api: client.clone(),
runtime_api: client,
block_status,
announce_block,
overseer_handle,
Expand Down
3 changes: 2 additions & 1 deletion pallets/parachain-system/src/validate_block/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ fn check_inherents_are_unsigned_and_before_all_other_extrinsics() {
.expect("Runs the test");
assert!(output.status.success());

assert!(String::from_utf8(output.stderr).unwrap()
assert!(String::from_utf8(output.stderr)
.unwrap()
.contains("Could not find `set_validation_data` inherent"));
}
}
1 change: 1 addition & 0 deletions pallets/xcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ std = [
"sp-runtime/std",
"frame-support/std",
"frame-system/std",
"xcm/std",
]
try-runtime = ["frame-support/try-runtime"]
2 changes: 2 additions & 0 deletions parachains/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,7 @@ std = [
"sp-std/std",
"pallet-collator-selection/std",
"cumulus-primitives-utility/std",
"xcm/std",
"xcm-executor/std",
"xcm-builder/std"
]
1 change: 1 addition & 0 deletions parachains/pallets/ping/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ std = [
"sp-runtime/std",
"frame-support/std",
"frame-system/std",
"xcm/std",
]
2 changes: 2 additions & 0 deletions primitives/utility/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,7 @@ std = [
"polkadot-parachain/std",
"polkadot-primitives/std",
"cumulus-primitives-core/std",
"xcm/std",
"xcm-builder/std",
"xcm-executor/std",
]