File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
crates/chia-sdk-driver/src Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ mod option_contract_layer;
88mod p2_curried_layer;
99mod p2_delegated_conditions_layer;
1010mod p2_one_of_many_layer;
11- mod p2_parent;
1211mod p2_singleton_layer;
1312mod revocation_layer;
1413mod royalty_transfer_layer;
@@ -27,7 +26,6 @@ pub use option_contract_layer::*;
2726pub use p2_curried_layer:: * ;
2827pub use p2_delegated_conditions_layer:: * ;
2928pub use p2_one_of_many_layer:: * ;
30- pub use p2_parent:: * ;
3129pub use p2_singleton_layer:: * ;
3230pub use revocation_layer:: * ;
3331pub use royalty_transfer_layer:: * ;
@@ -47,3 +45,9 @@ mod action_layer;
4745
4846#[ cfg( feature = "action-layer" ) ]
4947pub use action_layer:: * ;
48+
49+ #[ cfg( feature = "action-layer" ) ]
50+ mod p2_parent;
51+
52+ #[ cfg( feature = "action-layer" ) ]
53+ pub use p2_parent:: * ;
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ mod launcher;
88mod mips;
99mod nft;
1010mod option;
11- mod p2_parent_coin;
1211mod singleton;
1312mod streamed_asset;
1413mod vault;
@@ -23,7 +22,6 @@ pub use launcher::*;
2322pub use mips:: * ;
2423pub use nft:: * ;
2524pub use option:: * ;
26- pub use p2_parent_coin:: * ;
2725pub use singleton:: * ;
2826pub use streamed_asset:: * ;
2927pub use vault:: * ;
@@ -39,3 +37,9 @@ mod action_layer;
3937
4038#[ cfg( feature = "action-layer" ) ]
4139pub use action_layer:: * ;
40+
41+ #[ cfg( feature = "action-layer" ) ]
42+ mod p2_parent_coin;
43+
44+ #[ cfg( feature = "action-layer" ) ]
45+ pub use p2_parent_coin:: * ;
You can’t perform that action at this time.
0 commit comments