@@ -53,7 +53,6 @@ impl SignetSystemConstants {
5353 }
5454
5555 /// Get the hard-coded local test constants.
56- #[ cfg( any( test, feature = "test-utils" ) ) ]
5756 pub const fn test ( ) -> Self {
5857 crate :: chains:: test_utils:: TEST_SYS
5958 }
@@ -227,7 +226,6 @@ impl TryFrom<KnownChains> for SignetSystemConstants {
227226 fn try_from ( chain : KnownChains ) -> Result < Self , Self :: Error > {
228227 match chain {
229228 KnownChains :: Pecorino => Ok ( Self :: pecorino ( ) ) ,
230- #[ cfg( any( test, feature = "test-utils" ) ) ]
231229 KnownChains :: Test => Ok ( Self :: test ( ) ) ,
232230 }
233231 }
@@ -265,7 +263,6 @@ impl SignetConstants {
265263 }
266264
267265 /// Get the hard-coded local test rollup constants.
268- #[ cfg( any( test, feature = "test-utils" ) ) ]
269266 pub const fn test ( ) -> Self {
270267 crate :: chains:: test_utils:: TEST
271268 }
@@ -297,7 +294,6 @@ impl TryFrom<KnownChains> for SignetConstants {
297294 fn try_from ( chain : KnownChains ) -> Result < Self , Self :: Error > {
298295 match chain {
299296 KnownChains :: Pecorino => Ok ( Self :: pecorino ( ) ) ,
300- #[ cfg( any( test, feature = "test-utils" ) ) ]
301297 KnownChains :: Test => Ok ( Self :: test ( ) ) ,
302298 }
303299 }
0 commit comments