Skip to content

Commit

Permalink
Fix feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafał Chabowski committed Mar 28, 2024
1 parent c5725cb commit dd2ef57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/src/transaction/transaction_v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ impl TransactionV1 {
/// Returns `Ok` if and only if:
/// * the chain_name is correct,
/// * the configured parameters are complied with at the given timestamp
#[cfg(any(feature = "std", test))]
#[cfg(any(all(feature = "std", feature = "testing"), test))]
pub fn is_config_compliant(
&self,
chainspec: &Chainspec,
Expand Down

0 comments on commit dd2ef57

Please sign in to comment.