From ee971c3aa16dd84b7f00ac0e8e00373b7d1488fd Mon Sep 17 00:00:00 2001 From: Nicholas Addison Date: Tue, 6 Aug 2024 19:06:23 +1000 Subject: [PATCH] made constant CLAIM_DELAY public --- contracts/contracts/vault/OETHVaultCore.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/contracts/vault/OETHVaultCore.sol b/contracts/contracts/vault/OETHVaultCore.sol index 12b14c3041..9798d3490b 100644 --- a/contracts/contracts/vault/OETHVaultCore.sol +++ b/contracts/contracts/vault/OETHVaultCore.sol @@ -18,7 +18,7 @@ contract OETHVaultCore is VaultCore { using SafeERC20 for IERC20; using StableMath for uint256; - uint256 constant CLAIM_DELAY = 10 minutes; + uint256 public constant CLAIM_DELAY = 10 minutes; address public immutable weth; uint256 public wethAssetIndex;