Skip to content

Commit

Permalink
chore: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
ququzone committed Nov 27, 2024
1 parent 13cd426 commit 5a054f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/gauges/FixedRewardPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ contract FixedRewardPool is OwnableUpgradeable, ReentrancyGuardUpgradeable, ERC7
}
}

uint _amount = weightNFT.weight(_tokenId);
uint256 _amount = weightNFT.weight(_tokenId);
if (_amount > 0) {
user.amount = user.amount + _amount;
IERC721(weightNFT.nft()).safeTransferFrom(msg.sender, address(this), _tokenId);
Expand Down

0 comments on commit 5a054f4

Please sign in to comment.