Skip to content

Commit

Permalink
chore : resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Nagaprasadvr authored and kespinola committed Jan 6, 2025
1 parent 5ae2423 commit ded0fac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion digital_asset_types/src/dapi/common/asset.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use crate::dao::sea_orm_active_enums::SpecificationVersions;
use crate::dao::token_accounts;
use crate::dao::FullAsset;
use crate::dao::PageOptions;
Expand Down
4 changes: 2 additions & 2 deletions digital_asset_types/src/rpc/asset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub enum Interface {
V1PRINT,
#[serde(rename = "V2_NFT")]
Nft,
// TODO: change on version bump\
// TODO: change on version bump
#[serde(rename = "LEGACY_NFT")]
#[allow(non_camel_case_types)]
LEGACY_NFT,
Expand Down Expand Up @@ -97,7 +97,7 @@ impl From<Interface> for (SpecificationVersions, SpecificationAssetClass) {
SpecificationAssetClass::MplCoreCollection,
),
Interface::FungibleToken => (
SpecificationVersions::V0,
SpecificationVersions::V1,
SpecificationAssetClass::FungibleToken,
),
_ => (SpecificationVersions::V1, SpecificationAssetClass::Unknown),
Expand Down
1 change: 0 additions & 1 deletion integration_tests/tests/integration_tests/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ mod mpl_core_tests;
mod regular_nft_tests;
mod test_show_zero_balance_filter;
mod token_accounts_tests;
mod token_extensions_tests;
2 changes: 2 additions & 0 deletions program_transformers/src/token_extensions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ async fn upsert_asset_data(
asset_data::Column::MetadataUrl,
asset_data::Column::SlotUpdated,
asset_data::Column::BaseInfoSeq,
asset_data::Column::RawName,
asset_data::Column::RawSymbol,
])
.to_owned(),
)
Expand Down

0 comments on commit ded0fac

Please sign in to comment.