File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
is-plutus-data-derive/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -647,7 +647,7 @@ fn data_with_named_fields_from_list_of_plutus_data(
647
647
648
648
parse_quote ! (
649
649
{
650
- let [ #( #unparsed_field_idents) , * ] = parse_fixed_len_plutus_data_list :: <#field_count>( #plutus_data_list_var) ?;
650
+ let [ #( #unparsed_field_idents) , * ] = plutus_data :: is_plutus_data :: aux :: parse_fixed_len_constr_fields :: <#field_count>( #plutus_data_list_var) ?;
651
651
#( #field_decoded_stmts) *
652
652
Ok ( #constructor{ #( #field_idents) , * } )
653
653
}
@@ -677,7 +677,7 @@ fn data_with_unnamed_fields_from_list_of_plutus_data(
677
677
} ) ;
678
678
679
679
parse_quote ! ( {
680
- let [ #( #unparsed_field_idents) , * ] = parse_fixed_len_plutus_data_list :: <#field_count>( #plutus_data_list_var) ?;
680
+ let [ #( #unparsed_field_idents) , * ] = plutus_data :: is_plutus_data :: aux :: parse_fixed_len_constr_fields :: <#field_count>( #plutus_data_list_var) ?;
681
681
#( #field_decoded_stmts) *
682
682
Ok ( #constructor( #( #parsed_field_idents) , * ) )
683
683
} )
@@ -688,7 +688,7 @@ fn data_with_no_fields_from_list_of_plutus_data(
688
688
list_of_plutus_data_var : & Ident ,
689
689
) -> Block {
690
690
parse_quote ! ( {
691
- let [ ] = parse_fixed_len_plutus_data_list :: <0 >( #list_of_plutus_data_var) ?;
691
+ let [ ] = plutus_data :: is_plutus_data :: aux :: parse_fixed_len_constr_fields :: <0 >( #list_of_plutus_data_var) ?;
692
692
Ok ( #constructor)
693
693
} )
694
694
}
You can’t perform that action at this time.
0 commit comments