Skip to content

Commit 46f6638

Browse files
committed
fix typo
1 parent 5b5cccc commit 46f6638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Thirdweb/Core/Scripts/ERC1155.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public async Task<List<NFT>> GetOwned(string address = null)
116116
List<NFT> ownedNfts = new List<NFT>();
117117
for (int i = 0; i < totalCount; i++)
118118
{
119-
BigInteger ownedBalance = BigInteger.Parse(await Balanceof(owner, i.ToString()));
119+
BigInteger ownedBalance = BigInteger.Parse(await BalanceOf(owner, i.ToString()));
120120
if (ownedBalance == 0)
121121
{
122122
continue;

0 commit comments

Comments
 (0)