Skip to content

Commit 7ccd46d

Browse files
committed
Merge remote-tracking branch 'origin/nicka/oeth-arm' into nicka/allocate
2 parents a55bec4 + 5b61c2b commit 7ccd46d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contracts/contracts/vault/OETHVaultCore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ contract OETHVaultCore is VaultCore {
1717
using SafeERC20 for IERC20;
1818
using StableMath for uint256;
1919

20-
uint256 constant CLAIM_DELAY = 30 minutes;
20+
uint256 constant CLAIM_DELAY = 10 minutes;
2121
address public immutable weth;
2222
uint256 public wethAssetIndex;
2323

contracts/test/vault/oeth-vault.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ describe("OETH Vault", function () {
501501
});
502502

503503
describe("Withdrawal Queue", () => {
504-
const delayPeriod = 30 * 60; // 30 minutes
504+
const delayPeriod = 10 * 60; // 10 minutes
505505
describe("with all 60 WETH in the vault", () => {
506506
beforeEach(async () => {
507507
const { oethVault, weth, daniel, josh, matt } = fixture;

contracts/test/vault/oeth-vault.mainnet.fork-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe("ForkTest: OETH Vault", function () {
6666

6767
describe("user operations", () => {
6868
let oethWhaleSigner;
69-
const delayPeriod = 30 * 60; // 30 minutes
69+
const delayPeriod = 10 * 60; // 10 minutes
7070
beforeEach(async () => {
7171
oethWhaleSigner = await impersonateAndFund(oethWhaleAddress);
7272
});

0 commit comments

Comments
 (0)