Skip to content

Commit

Permalink
Fix semicolon in calculateNftItemInitalBalance()
Browse files Browse the repository at this point in the history
function
  • Loading branch information
d0rich committed Nov 12, 2023
1 parent 1a43443 commit 0bc6dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contracts/lib/trait_nft_collection.tact
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ trait NftCollection with Deployable, Accounting {
}

virtual fun calculateNftItemInitalBalance(): Int {
return self.calculateFullAmountForSending()
return self.calculateFullAmountForSending();
}

// ------------------ Get Function ------------------ //
Expand Down

0 comments on commit 0bc6dce

Please sign in to comment.