Remove `orchard` feature flag from behind `zcash_unstable` cfg flag

This commit is contained in:
Jack Grigg 2024-03-19 14:05:45 +00:00
parent 35a60abc30
commit b189fe7a36
2 changed files with 0 additions and 6 deletions

View File

@ -34,7 +34,6 @@ jobs:
- state: Orchard
extra_flags: orchard
rustflags: '--cfg zcash_unstable="orchard"'
- state: NU6
rustflags: '--cfg zcash_unstable="nu6"'

View File

@ -83,8 +83,3 @@ pub use zcash_protocol::{PoolType, ShieldedProtocol};
#[cfg(test)]
#[macro_use]
extern crate assert_matches;
#[cfg(all(feature = "orchard", not(zcash_unstable = "orchard")))]
core::compile_error!(
"The `orchard` feature flag requires the `zcash_unstable=\"orchard\"` RUSTFLAG."
);