Skip to content

Commit

Permalink
small syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TForge1 committed Oct 3, 2024
1 parent 107a411 commit 4412cc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/NukeFund/NukeFund.sol
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ contract NukeFund is INukeFund, ReentrancyGuard, Ownable, Pausable {
: potentialClaimAmount;

fund -= claimAmount; // Deduct the claim amount from the fund
uint256 entropy = TraitForgeNft.getTokenEntropy(tokenId);
uint256 entropy = nftContract.getTokenEntropy(tokenId);
nftContract.burn(tokenId); // Burn the token
(bool success, ) = payable(msg.sender).call{ value: claimAmount }('');
require(success, 'Failed to send Ether');
Expand Down

0 comments on commit 4412cc3

Please sign in to comment.