Skip to content

Commit e2b0a3a

Browse files
committed
comments
1 parent 269cdcc commit e2b0a3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utility/UtilityLib.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library UtilityLib {
2929
}
3030
}
3131

32-
/// @notice Returns the users balance only if no reentrancy is active on the Compact. This eliminates in flight balances and ensures a valid value.
32+
/// @notice Returns the users balance only if reentrancy protection is not active on the Compact. This eliminates in flight balances before the ERC6909 tokens were burned.
3333
/// @dev Only if eip-1153 (transient storage) available.
3434
function settledBalanceOf(address owner, uint256 id) internal view returns (uint256 amount) {
3535
// If transient storage available
@@ -41,7 +41,7 @@ library UtilityLib {
4141
return ERC6909(THE_COMPACT).balanceOf(owner, id);
4242
}
4343

44-
/// @notice Returns the users balance only if no reentrancy is active on the Compact. This eliminates in flight balances and ensures a valid value.
44+
/// @notice Returns the users balance only if reentrancy protection is not active on the Compact. This eliminates in flight balances before the ERC6909 tokens were burned.
4545
/// @dev Only if eip-1153 (transient storage) is not available.
4646
function settledBalanceOf_nonTransient(address owner, uint256 id) internal view returns (uint256 amount) {
4747
// If storage available

0 commit comments

Comments
 (0)