Skip to content

Commit

Permalink
[!] fix solana.nft()
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhongFuze committed Apr 15, 2024
1 parent d62ad9c commit c347cba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tigergraph/vertex/identity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,9 @@ impl IdentityRecord {
limit: u16,
offset: u16,
) -> Result<Vec<HoldRecord>, Error> {
if self.attributes.platform != Platform::Ethereum {
if self.attributes.platform != Platform::Ethereum
&& self.attributes.platform != Platform::Solana
{
return Ok(vec![]);
}
// query see in Solution: nfts(VERTEX<Identities> p, SET<STRING> categories, INT numPerPage, INT pageNum)
Expand Down

0 comments on commit c347cba

Please sign in to comment.