Skip to content

Commit

Permalink
adding warning when using default substrateWeight in production (#7046)
Browse files Browse the repository at this point in the history
PR for #3581 
Added a cfg to show a deprecated warning message when using std

---------

Co-authored-by: command-bot <>
Co-authored-by: Adrian Catangiu <[email protected]>
  • Loading branch information
Krayt78 and acatangiu authored Jan 7, 2025
1 parent a578052 commit 645878a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions prdoc/pr_7046.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: adding warning when using default substrateWeight in production
doc:
- audience: Runtime Dev
description: |-
PR for #3581
Added a cfg to show a deprecated warning message when using std
crates: []
6 changes: 6 additions & 0 deletions templates/parachain/pallets/template/src/weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ pub trait WeightInfo {
}

/// Weights for pallet_template using the Substrate node and recommended hardware.
#[cfg_attr(
not(feature = "std"),
deprecated(
note = "SubstrateWeight is auto-generated and should not be used in production. Replace it with runtime benchmarked weights."
)
)]
pub struct SubstrateWeight<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
/// Storage: Template Something (r:0 w:1)
Expand Down

0 comments on commit 645878a

Please sign in to comment.