Skip to content

Commit d87f1fc

Browse files
committed
Format
1 parent 45b94e1 commit d87f1fc

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

runtimes/bulletin-polkadot-parachain/src/apis.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,4 +551,3 @@ impl_runtime_apis! {
551551
}
552552
}
553553
}
554-

runtimes/bulletin-polkadot-parachain/src/benchmarks.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,3 @@ frame_benchmarking::define_benchmarks!(
3030
[pallet_xcm_benchmarks::generic, XcmGeneric]
3131
[cumulus_pallet_weight_reclaim, WeightReclaim]
3232
);
33-

runtimes/bulletin-polkadot-parachain/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
#[cfg(feature = "std")]
2222
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
2323

24-
pub mod constants;
2524
mod apis;
2625
#[cfg(feature = "runtime-benchmarks")]
2726
mod benchmarks;
27+
pub mod constants;
2828
mod genesis_config_presets;
2929
pub mod migrations;
3030
pub mod storage;

runtimes/bulletin-polkadot-parachain/src/migrations.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,3 @@ pub type SingleBlockMigrations = (Unreleased, Permanent);
4343

4444
/// MBM migrations to apply on runtime upgrade.
4545
pub type MbmMigrations = ();
46-

runtimes/bulletin-polkadot-parachain/tests/tests.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ fn transaction_storage_runtime_sizes() {
127127
let who: AccountId = account.to_account_id();
128128
#[allow(clippy::identity_op)]
129129
let sizes: [usize; 5] = [
130-
2 * 1024, // 2 KB
131-
16 * 1024, // 16 KB
132-
128 * 1024, // 128 KB
133-
512 * 1024, // 512 KB
130+
2 * 1024, // 2 KB
131+
16 * 1024, // 16 KB
132+
128 * 1024, // 128 KB
133+
512 * 1024, // 512 KB
134134
1 * 1024 * 1024, // 1 MB
135135
];
136136
let total_bytes: u64 = sizes.iter().map(|s| *s as u64).sum();

0 commit comments

Comments
 (0)