File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
is-plutus-data-derive/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ fn try_parse_derive_strategy(attr: &Attribute) -> Option<Result<DeriveStrategy>>
96
96
let value = match & attr. meta {
97
97
Meta :: NameValue ( name_value) => name_value
98
98
. path
99
- . is_ident ( "plutus_data_derive_strategy " )
99
+ . is_ident ( "is_plutus_data_derive_strategy " )
100
100
. then_some ( & name_value. value ) ,
101
101
_ => None ,
102
102
} ?;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use syn::{parse_macro_input, DeriveInput};
3
3
4
4
pub ( crate ) mod derive_impl;
5
5
6
- #[ proc_macro_derive( IsPlutusData , attributes( plutus_data_derive_strategy ) ) ]
6
+ #[ proc_macro_derive( IsPlutusData , attributes( is_plutus_data_derive_strategy ) ) ]
7
7
pub fn derive_is_plutus_data ( input : proc_macro:: TokenStream ) -> proc_macro:: TokenStream {
8
8
let input = parse_macro_input ! ( input as DeriveInput ) ;
9
9
derive_impl:: get_is_plutus_data_instance ( input)
You can’t perform that action at this time.
0 commit comments