@@ -297,7 +297,7 @@ pub struct PlutusData(PlutusDataEnum);
297297
298298const PLUTUS_BYTES_MAX_LEN : usize = 64 ;
299299
300- to_from_bytes ! ( PlutusDataEnum ) ;
300+ to_from_bytes ! ( PlutusData ) ;
301301
302302#[ wasm_bindgen]
303303impl PlutusData {
@@ -412,7 +412,7 @@ enum PreludeBigintEnum {
412412#[ derive( Clone , Debug , Eq , Ord , PartialEq , PartialOrd ) ]
413413pub struct PreludeBigint ( PreludeBigintEnum ) ;
414414
415- to_from_bytes ! ( PreludeBigintEnum ) ;
415+ to_from_bytes ! ( PreludeBigint ) ;
416416
417417#[ wasm_bindgen]
418418impl PreludeBigint {
@@ -485,7 +485,7 @@ enum PreludeIntegerEnum {
485485#[ derive( Clone , Debug , Eq , Ord , PartialEq , PartialOrd ) ]
486486pub struct PreludeInteger ( PreludeIntegerEnum ) ;
487487
488- to_from_bytes ! ( PreludeIntegerEnum ) ;
488+ to_from_bytes ! ( PreludeInteger ) ;
489489
490490#[ wasm_bindgen]
491491impl PreludeInteger {
@@ -580,7 +580,7 @@ enum RedeemerTagEnum {
580580#[ derive( Clone , Debug , Eq , Ord , PartialEq , PartialOrd ) ]
581581pub struct RedeemerTag ( RedeemerTagEnum ) ;
582582
583- to_from_bytes ! ( RedeemerTagEnum ) ;
583+ to_from_bytes ! ( RedeemerTag ) ;
584584
585585#[ wasm_bindgen]
586586impl RedeemerTag {
@@ -1413,4 +1413,4 @@ impl Deserialize for Strings {
14131413 } ) ( ) . map_err ( |e| e. annotate ( "Strings" ) ) ?;
14141414 Ok ( Self ( arr) )
14151415 }
1416- }
1416+ }
0 commit comments