Skip to content

Commit

Permalink
export weights properly (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
girazoki authored Apr 10, 2024
1 parent 6b19dcb commit 020caff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 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 container-chain-pallets/authorities-noting/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ mod mock;
#[cfg(test)]
mod tests;
pub mod weights;
pub use weights::WeightInfo;

#[cfg(any(test, feature = "runtime-benchmarks"))]
pub mod benchmarks;
Expand All @@ -45,7 +46,6 @@ use crate::benchmarks::BenchmarkHelper;
pub use pallet::*;

use {
crate::weights::WeightInfo,
ccp_authorities_noting_inherent::INHERENT_IDENTIFIER,
cumulus_pallet_parachain_system::RelaychainStateProvider,
cumulus_primitives_core::{
Expand Down
2 changes: 1 addition & 1 deletion pallets/xcm-executor-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ mod mock;
#[cfg(test)]
mod tests;
pub mod weights;
pub use weights::WeightInfo;

#[cfg(any(test, feature = "runtime-benchmarks"))]
mod benchmarks;
Expand All @@ -37,7 +38,6 @@ pub mod filters;
pub use pallet::*;

use {
crate::weights::WeightInfo,
frame_support::{pallet_prelude::*, DefaultNoBound},
frame_system::pallet_prelude::*,
serde::{Deserialize, Serialize},
Expand Down

0 comments on commit 020caff

Please sign in to comment.