Skip to content

Commit 7684da5

Browse files
Update from github-actions[bot] running command 'fmt'
1 parent f6fe0a2 commit 7684da5

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ members = [
1212
"bridges/bin/runtime-common",
1313
"bridges/chains/chain-asset-hub-rococo",
1414
"bridges/chains/chain-asset-hub-westend",
15-
"bridges/chains/chain-cumulus",
1615
"bridges/chains/chain-bridge-hub-rococo",
1716
"bridges/chains/chain-bridge-hub-westend",
17+
"bridges/chains/chain-cumulus",
1818
"bridges/chains/chain-polkadot-bulletin",
1919
"bridges/chains/chain-rococo",
2020
"bridges/chains/chain-westend",

bridges/chains/chain-cumulus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ bp-runtime = { workspace = true }
2424

2525
frame-support = { workspace = true }
2626
frame-system = { workspace = true }
27+
parachains-common = { workspace = true }
2728
sp-api = { workspace = true }
2829
sp-std = { workspace = true }
29-
parachains-common = { workspace = true }
3030

3131
# Polkadot Dependencies
3232
polkadot-primitives = { workspace = true }

bridges/chains/chain-cumulus/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub use bp_polkadot_core::{
2727

2828
pub use parachains_common::{
2929
AVERAGE_ON_INITIALIZE_RATIO, MAXIMUM_BLOCK_WEIGHT, MAXIMUM_BLOCK_WEIGHT_FOR_ASYNC_BACKING,
30-
NORMAL_DISPATCH_RATIO, SLOT_DURATION
30+
NORMAL_DISPATCH_RATIO, SLOT_DURATION,
3131
};
3232

3333
use bp_messages::*;

cumulus/parachains/common/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ mod constants {
8282
PalletId,
8383
};
8484
use sp_runtime::Perbill;
85-
85+
8686
/// This determines the average expected block time that we are targeting. Blocks will be
8787
/// produced at a minimum duration defined by `SLOT_DURATION`. `SLOT_DURATION` is picked up by
8888
/// `pallet_timestamp` which is in turn picked up by `pallet_aura` to implement `fn
@@ -118,7 +118,6 @@ mod constants {
118118

119119
/// Treasury pallet id of the local chain, used to convert into AccountId
120120
pub const TREASURY_PALLET_ID: PalletId = PalletId(*b"py/trsry");
121-
122121
}
123122

124123
/// Opaque types. These are used by the CLI to instantiate machinery that don't need to know

0 commit comments

Comments
 (0)