File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
rust/cardano-chain-follower/src/metadata Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 22
33use std:: { fmt:: Debug , sync:: Arc } ;
44
5- use cardano_blockchain_types:: { Network , TransactionAuxData } ;
5+ use cardano_blockchain_types:: { MetadatumLabel , Network , TransactionAuxData } ;
66use cip36:: Cip36 ;
77use cip509:: Cip509 ;
88use dashmap:: DashMap ;
@@ -41,7 +41,7 @@ pub struct DecodedMetadataItem {
4141/// For example, CIP15/36 uses labels 61284 & 61285,
4242/// 61284 is the primary label, so decoded metadata
4343/// will be under that label.
44- pub ( crate ) struct DecodedMetadata ( DashMap < u64 , Arc < DecodedMetadataItem > > ) ;
44+ pub ( crate ) struct DecodedMetadata ( DashMap < MetadatumLabel , Arc < DecodedMetadataItem > > ) ;
4545
4646impl DecodedMetadata {
4747 /// Create new decoded metadata for a transaction.
You can’t perform that action at this time.
0 commit comments