Skip to content

Commit 2c483c5

Browse files
committed
chore : resolve comments
1 parent 8d592c7 commit 2c483c5

File tree

2 files changed

+4
-2
lines changed
  • digital_asset_types/src/rpc
  • program_transformers/src/token_extensions

2 files changed

+4
-2
lines changed

digital_asset_types/src/rpc/asset.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub enum Interface {
2929
V1PRINT,
3030
#[serde(rename = "V2_NFT")]
3131
Nft,
32-
// TODO: change on version bump\
32+
// TODO: change on version bump
3333
#[serde(rename = "LEGACY_NFT")]
3434
#[allow(non_camel_case_types)]
3535
LEGACY_NFT,
@@ -97,7 +97,7 @@ impl From<Interface> for (SpecificationVersions, SpecificationAssetClass) {
9797
SpecificationAssetClass::MplCoreCollection,
9898
),
9999
Interface::FungibleToken => (
100-
SpecificationVersions::V0,
100+
SpecificationVersions::V1,
101101
SpecificationAssetClass::FungibleToken,
102102
),
103103
_ => (SpecificationVersions::V1, SpecificationAssetClass::Unknown),

program_transformers/src/token_extensions/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ async fn upsert_asset_data(
233233
asset_data::Column::MetadataUrl,
234234
asset_data::Column::SlotUpdated,
235235
asset_data::Column::BaseInfoSeq,
236+
asset_data::Column::RawName,
237+
asset_data::Column::RawSymbol,
236238
])
237239
.to_owned(),
238240
)

0 commit comments

Comments
 (0)