Skip to content

Commit

Permalink
style: run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Dec 13, 2023
1 parent eb9cc6e commit 8b4bd23
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 5 additions & 3 deletions solidity/test/integration/BondEscalation.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ pragma solidity ^0.8.19;
import './IntegrationBase.sol';

contract Integration_BondEscalation is IntegrationBase {
address _secondDisputer = makeAddr('secondDisputer');
address _secondProposer = makeAddr('secondProposer');
address _thirdProposer = makeAddr('thirdProposer');
address internal _secondDisputer = makeAddr('secondDisputer');
address internal _secondProposer = makeAddr('secondProposer');
address internal _thirdProposer = makeAddr('thirdProposer');

bytes internal _responseData = abi.encode('response');

bytes32 internal _requestId;
bytes32 internal _responseId;
bytes32 internal _disputeId;

uint256 internal _bondEscalationDeadline;
uint256 internal _tyingBuffer = 1 days;
uint256 internal _disputeWindow = 3 days;
Expand Down
5 changes: 1 addition & 4 deletions solidity/test/integration/RootVerification.t.sol
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';

import {
IRootVerificationModule, RootVerificationModule
} from '../../contracts/modules/dispute/RootVerificationModule.sol';
import {
IOracle,
ISparseMerkleTreeRequestModule,
SparseMerkleTreeRequestModule
} from '../../contracts/modules/request/SparseMerkleTreeRequestModule.sol';
Expand Down Expand Up @@ -56,7 +53,7 @@ contract Integration_RootVerification is IntegrationBase {
uint256 internal _treeCount = 1;
bytes internal _treeData = abi.encode(_treeBranches, _treeCount);
bytes32[] internal _leavesToInsert = [bytes32('leave1'), bytes32('leave2')];
bytes32 _correctRoot;
bytes32 internal _correctRoot;

function setUp() public override {
super.setUp();
Expand Down

0 comments on commit 8b4bd23

Please sign in to comment.