Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
0xShaito committed Dec 19, 2024
1 parent 1b39b29 commit 7173b06
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions solidity/test/integration/BondEscalation.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -128,17 +128,17 @@ contract Integration_BondEscalation is IntegrationBase {
/////////////////////////////
// Propose again
_deposit(_bondEscalationAccounting, proposer, usdc, _expectedBondSize);
IOracle.Response memory secondResponse = mockResponse;
secondResponse.response = abi.encode('second response');
IOracle.Response memory _secondResponse = mockResponse;
_secondResponse.response = abi.encode('second response');
vm.prank(proposer);
bytes32 _secondResponseId = oracle.proposeResponse(mockRequest, secondResponse, _createAccessControl(proposer));
bytes32 _secondResponseId = oracle.proposeResponse(mockRequest, _secondResponse, _createAccessControl(proposer));

// Dispute again
_deposit(_bondEscalationAccounting, disputer, usdc, _pledgeSize);
IOracle.Dispute memory secondDispute = mockDispute;
secondDispute.responseId = _secondResponseId;
IOracle.Dispute memory _secondDispute = mockDispute;
_secondDispute.responseId = _secondResponseId;
vm.prank(disputer);
_disputeId = oracle.disputeResponse(mockRequest, secondResponse, secondDispute, _createAccessControl(disputer));
_disputeId = oracle.disputeResponse(mockRequest, _secondResponse, _secondDispute, _createAccessControl(disputer));
////////////////////////////

// Step 4: Disputer runs out of capital
Expand Down

0 comments on commit 7173b06

Please sign in to comment.