Skip to content

Commit

Permalink
Update contracts/Everlong.sol
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Towle <[email protected]>
  • Loading branch information
mcclurejt and jalextowle authored Oct 28, 2024
1 parent 86a1a9c commit 005b73c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contracts/Everlong.sol
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,9 @@ contract Everlong is IEverlong {
// Decrement the assets owed to the redeemer by the amount of losses
// incurred from closing immature positions.
else {
assets -= losses;
unchecked {
assets -= losses;
}
}
}

Expand Down

0 comments on commit 005b73c

Please sign in to comment.