Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-kaufman committed Nov 24, 2024
1 parent 89e4fb8 commit 849e5ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/arbitrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ contract("Registry Arbitrator", (accounts) => {
});

it("arbitrator change proposal - approve claim with proposal after timeout", async () => {
const { registry, vault, claimsManager, stakingToken, arbitrator } = await setup(accounts);
const { registry, claimsManager, arbitrator } = await setup(accounts);
const newBounty = 6000;
const newBeneficiary = accounts[5];
const challengePeriod = 60*60*24*1;
Expand All @@ -1072,7 +1072,7 @@ contract("Registry Arbitrator", (accounts) => {

// TODO: Do we want to allow the arbitrator to changed the proposed resolution after timeout or not allow that? (Anyone could front run it and approve before the arbitrator with the proposed parameters)
it("arbitrator change proposal - approve claim with proposal after timeout shound not change data (even with arbitrator)", async () => {
const { registry, vault, claimsManager, stakingToken, arbitrator } = await setup(accounts);
const { registry, claimsManager, arbitrator } = await setup(accounts);
const newBounty = 6000;
const newBeneficiary = accounts[5];
const challengePeriod = 60*60*24*1;
Expand All @@ -1099,7 +1099,7 @@ contract("Registry Arbitrator", (accounts) => {
});

it("arbitrator change proposal - approve claim with proposal after timeout cannot change claim data if not arbitrator", async () => {
const { registry, vault, claimsManager, stakingToken, arbitrator } = await setup(accounts);
const { registry, claimsManager, arbitrator } = await setup(accounts);
const newBounty = 6000;
const newBeneficiary = accounts[5];
const challengePeriod = 60*60*24*1;
Expand Down Expand Up @@ -1252,7 +1252,7 @@ contract("Registry Arbitrator", (accounts) => {
});

it("expired unchallenged claim can be dismissed by anyone", async () => {
const { registry, claimsManager, arbitrator } = await setup(accounts);
const { registry, claimsManager } = await setup(accounts);
const someAccount = accounts[5];
const challengePeriod = 60*60*24*1;
const challengeTimeOutPeriod = 60*60*24*2;
Expand Down

0 comments on commit 849e5ce

Please sign in to comment.