Skip to content

Commit c00332a

Browse files
committed
Take macros out of testing feature
1 parent ec254b9 commit c00332a

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/core.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ impl Debug for PatriciaKey {
216216
}
217217

218218
/// A utility macro to create a [`PatriciaKey`] from a hex string / unsigned integer representation.
219-
#[cfg(any(feature = "testing", test))]
220219
#[macro_export]
221220
macro_rules! patricia_key {
222221
($s:expr) => {
@@ -225,7 +224,6 @@ macro_rules! patricia_key {
225224
}
226225

227226
/// A utility macro to create a [`ClassHash`] from a hex string / unsigned integer representation.
228-
#[cfg(any(feature = "testing", test))]
229227
#[macro_export]
230228
macro_rules! class_hash {
231229
($s:expr) => {
@@ -235,7 +233,6 @@ macro_rules! class_hash {
235233

236234
/// A utility macro to create a [`ContractAddress`] from a hex string / unsigned integer
237235
/// representation.
238-
#[cfg(any(feature = "testing", test))]
239236
#[macro_export]
240237
macro_rules! contract_address {
241238
($s:expr) => {

src/hash.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@ impl Display for StarkFelt {
249249
}
250250

251251
/// A utility macro to create a [`StarkFelt`] from a hex string representation.
252-
#[cfg(any(feature = "testing", test))]
253252
#[macro_export]
254253
macro_rules! stark_felt {
255254
($s:expr) => {

0 commit comments

Comments
 (0)