Skip to content

Commit

Permalink
use array for get sub nfts (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuahannan authored May 14, 2024
1 parent f6c99e9 commit 38f0fd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/NonFungibleToken.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ access(all) contract interface NonFungibleToken: ViewResolver {

/// Gets all the NFTs that this NFT directly owns
/// @return A dictionary of all subNFTS keyed by type
access(all) view fun getAvailableSubNFTS(): {Type: UInt64} {
access(all) view fun getAvailableSubNFTS(): {Type: [UInt64]} {
return {}
}

Expand Down
Loading

0 comments on commit 38f0fd7

Please sign in to comment.