Skip to content

Commit

Permalink
Change chainspec cfg statement to allow it to compile with either std…
Browse files Browse the repository at this point in the history
… or testing feature flags as opposed to BOTH std and testing or test
  • Loading branch information
Zach Showalter committed Feb 12, 2024
1 parent 9aba1cc commit ada3ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mod block;
mod block_time;
mod byte_code;
pub mod bytesrepr;
#[cfg(any(all(feature = "std", feature = "testing"), test))]
#[cfg(any(feature = "std", test))]
mod chainspec;
pub mod checksummed_hex;
mod cl_type;
Expand Down

0 comments on commit ada3ec3

Please sign in to comment.