Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
sunbreak1211 committed Sep 19, 2023
1 parent 3ade76d commit 05e47a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ngt.sol
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ contract Ngt {
function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
uint256 allowed = allowance[msg.sender][spender];
require(allowed >= subtractedValue, "Ngt/insufficient-allowance");
unchecked{
unchecked {
allowed = allowed - subtractedValue;
}
allowance[msg.sender][spender] = allowed;
Expand Down

0 comments on commit 05e47a8

Please sign in to comment.