Skip to content

Commit ed6bc0e

Browse files
lint
1 parent 8626986 commit ed6bc0e

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/abstract/OwnerFreezable.sol

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ pragma solidity ^0.8.25;
55
import {OwnableUpgradeable as Ownable} from "openzeppelin-contracts-upgradeable/contracts/access/OwnableUpgradeable.sol";
66
import {IOwnerFreezableV1, IERC5313} from "../interface/IOwnerFreezableV1.sol";
77

8-
import {console2} from "forge-std/console2.sol";
9-
108
/// @title OwnerFreezable
119
/// This abstract contract inherits from Ownable and adds the ability for the
1210
/// owner to freeze the contract until a given timestamp. The owner cannot
@@ -164,9 +162,6 @@ abstract contract OwnerFreezable is Ownable, IOwnerFreezableV1 {
164162
/// @param from The address that tokens are being sent from.
165163
/// @param to The address that tokens are being sent to.
166164
function ownerFreezeCheckTransaction(address from, address to) internal view {
167-
console2.log("owner freeze check transaction");
168-
console2.log(block.timestamp);
169-
console2.log(sOwnerFrozenUntil);
170165
// We either simply revert or no-op for this check.
171166
// Revert if the contract is frozen and neither the `from` nor `to` are
172167
// in their respective always allowed lists.

test/src/concrete/vault/ERC20PriceOracleReceiptVault.redeem.t.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {IReceiptVaultV1} from "../../../../src/interface/IReceiptVaultV3.sol";
1515
import {SFLR_CONTRACT} from "rain.flare/lib/sflr/LibSceptreStakedFlare.sol";
1616
import {LibERC20PriceOracleReceiptVaultFork} from "../../../lib/LibERC20PriceOracleReceiptVaultFork.sol";
1717
import {LibUniqueAddressesGenerator} from "../../../lib/LibUniqueAddressesGenerator.sol";
18-
import {IERC1155Errors} from "openzeppelin-contracts-upgradeable/contracts/token/ERC1155/ERC1155Upgradeable.sol";
1918
import {IERC20Errors} from "openzeppelin-contracts-upgradeable/contracts/token/ERC20/ERC20Upgradeable.sol";
2019

2120
contract ERC20PriceOracleReceiptVaultRedeemTest is ERC20PriceOracleReceiptVaultTest {

test/src/concrete/vault/OffchainAssetReceiptVault.ERC20Standard.t.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {LibFixedPointDecimalArithmeticOpenZeppelin} from
99
import {LibUniqueAddressesGenerator} from "../../../lib/LibUniqueAddressesGenerator.sol";
1010
import {OffchainAssetReceiptVaultAuthorizerV1} from "src/concrete/authorize/OffchainAssetReceiptVaultAuthorizerV1.sol";
1111
import {SafeERC20, IERC20} from "openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
12-
import {console2} from "forge-std/console2.sol";
1312

1413
contract OffchainAssetReceiptVaultERC20StandardTest is OffchainAssetReceiptVaultTest {
1514
using LibFixedPointDecimalArithmeticOpenZeppelin for uint256;

0 commit comments

Comments
 (0)