@@ -362,6 +362,7 @@ mod end_of_epoch {
362
362
} ,
363
363
StoreExecutionTimeObservations ( & ' a crate :: transaction:: ExecutionTimeObservations ) ,
364
364
AccumulatorRootCreate ,
365
+ CoinMetadataRegistryCreate ,
365
366
}
366
367
367
368
#[ derive( serde_derive:: Deserialize ) ]
@@ -381,6 +382,7 @@ mod end_of_epoch {
381
382
} ,
382
383
StoreExecutionTimeObservations ( crate :: transaction:: ExecutionTimeObservations ) ,
383
384
AccumulatorRootCreate ,
385
+ CoinMetadataRegistryCreate ,
384
386
}
385
387
386
388
#[ derive( serde_derive:: Serialize ) ]
@@ -394,6 +396,7 @@ mod end_of_epoch {
394
396
BridgeCommitteeInit { bridge_object_version : u64 } ,
395
397
StoreExecutionTimeObservations ( & ' a crate :: transaction:: ExecutionTimeObservations ) ,
396
398
AccumulatorRootCreate ,
399
+ CoinMetadataRegistryCreate ,
397
400
}
398
401
399
402
#[ derive( serde_derive:: Deserialize ) ]
@@ -407,6 +410,7 @@ mod end_of_epoch {
407
410
BridgeCommitteeInit { bridge_object_version : u64 } ,
408
411
StoreExecutionTimeObservations ( crate :: transaction:: ExecutionTimeObservations ) ,
409
412
AccumulatorRootCreate ,
413
+ CoinMetadataRegistryCreate ,
410
414
}
411
415
412
416
impl Serialize for EndOfEpochTransactionKind {
@@ -443,6 +447,9 @@ mod end_of_epoch {
443
447
Self :: AccumulatorRootCreate => {
444
448
ReadableEndOfEpochTransactionKindRef :: AccumulatorRootCreate
445
449
}
450
+ Self :: CoinMetadataRegistryCreate => {
451
+ ReadableEndOfEpochTransactionKindRef :: CoinMetadataRegistryCreate
452
+ }
446
453
} ;
447
454
readable. serialize ( serializer)
448
455
} else {
@@ -474,6 +481,9 @@ mod end_of_epoch {
474
481
Self :: AccumulatorRootCreate => {
475
482
BinaryEndOfEpochTransactionKindRef :: AccumulatorRootCreate
476
483
}
484
+ Self :: CoinMetadataRegistryCreate => {
485
+ BinaryEndOfEpochTransactionKindRef :: CoinMetadataRegistryCreate
486
+ }
477
487
} ;
478
488
binary. serialize ( serializer)
479
489
}
@@ -515,6 +525,9 @@ mod end_of_epoch {
515
525
ReadableEndOfEpochTransactionKind :: AccumulatorRootCreate => {
516
526
Self :: AccumulatorRootCreate
517
527
}
528
+ ReadableEndOfEpochTransactionKind :: CoinMetadataRegistryCreate => {
529
+ Self :: CoinMetadataRegistryCreate
530
+ }
518
531
}
519
532
} )
520
533
} else {
@@ -547,6 +560,9 @@ mod end_of_epoch {
547
560
BinaryEndOfEpochTransactionKind :: AccumulatorRootCreate => {
548
561
Self :: AccumulatorRootCreate
549
562
}
563
+ BinaryEndOfEpochTransactionKind :: CoinMetadataRegistryCreate => {
564
+ Self :: CoinMetadataRegistryCreate
565
+ }
550
566
} ,
551
567
)
552
568
}
0 commit comments