Skip to content

Commit

Permalink
chore: merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJabberwock committed Jul 26, 2024
2 parents 302ba38 + fa9f37e commit 14915c5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ contract BondEscalationModule is Module, IBondEscalationModule {
uint256 _pledgesForDispute = _escalation.amountOfPledgesForDispute;
uint256 _pledgesAgainstDispute = _escalation.amountOfPledgesAgainstDispute;

if (_pledgesAgainstDispute > 0) {
if (_pledgesAgainstDispute > 0 || _pledgesForDispute > 0) {
uint256 _amountToPay = _won
? _params.bondSize
+ FixedPointMathLib.mulDivDown(_pledgesAgainstDispute, _params.bondSize, _pledgesForDispute)
Expand Down
30 changes: 14 additions & 16 deletions solidity/test/unit/modules/dispute/BondEscalationModule.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -787,9 +787,11 @@ contract BondEscalationModule_Unit_OnDisputeStatusChange is BaseTest {
* the users that pledged in favor of the dispute, as they have won.
*/
function test_shouldChangeBondEscalationStatusAndCallPayPledgersWon(
IBondEscalationModule.RequestParameters memory _params
IBondEscalationModule.RequestParameters memory _params,
uint256 _numPledgers
) public assumeFuzzable(address(_params.accountingExtension)) {
vm.assume(_params.bondSize < type(uint256).max / 2);
vm.assume(_params.bondSize < type(uint128).max / 2);
vm.assume(_numPledgers > 0 && _numPledgers < 30);

IOracle.DisputeStatus _status = IOracle.DisputeStatus.Won;

Expand All @@ -799,11 +801,8 @@ contract BondEscalationModule_Unit_OnDisputeStatusChange is BaseTest {
mockDispute.requestId = _requestId;
bytes32 _disputeId = _getId(mockDispute);

uint256 _numForPledgers = 2;
uint256 _numAgainstPledgers = 2;

// Set bond escalation data to have pledgers and to return the winning for pledgers as in this case they won the escalation
_setBondEscalation(_requestId, _numForPledgers, _numAgainstPledgers);
_setBondEscalation(_requestId, _numPledgers, _numPledgers);

// Set this dispute to have gone through the bond escalation process
bondEscalationModule.forTest_setEscalatedDispute(_requestId, _disputeId);
Expand Down Expand Up @@ -840,7 +839,7 @@ contract BondEscalationModule_Unit_OnDisputeStatusChange is BaseTest {
address(_params.accountingExtension),
abi.encodeCall(
IBondEscalationAccounting.onSettleBondEscalation,
(_requestId, _disputeId, _params.bondToken, _params.bondSize << 1, _numForPledgers)
(_requestId, _disputeId, _params.bondToken, _params.bondSize << 1, _numPledgers)
),
abi.encode()
);
Expand All @@ -866,9 +865,11 @@ contract BondEscalationModule_Unit_OnDisputeStatusChange is BaseTest {
* the users that pledged against the dispute, as those that pledged in favor have lost .
*/
function test_shouldChangeBondEscalationStatusAndCallPayPledgersLost(
IBondEscalationModule.RequestParameters memory _params
IBondEscalationModule.RequestParameters memory _params,
uint256 _numPledgers
) public assumeFuzzable(address(_params.accountingExtension)) {
vm.assume(_params.bondSize < type(uint256).max / 2);
vm.assume(_params.bondSize < type(uint128).max / 2);
vm.assume(_numPledgers > 0 && _numPledgers < 30);

// Set to Lost so the proposer and againstDisputePledgers win
IOracle.DisputeStatus _status = IOracle.DisputeStatus.Lost;
Expand All @@ -879,11 +880,8 @@ contract BondEscalationModule_Unit_OnDisputeStatusChange is BaseTest {
mockDispute.requestId = _requestId;
bytes32 _disputeId = _getId(mockDispute);

uint256 _numForPledgers = 2;
uint256 _numAgainstPledgers = 2;

// Set bond escalation data to have pledgers and to return the winning for pledgers as in this case they won the escalation
_setBondEscalation(_requestId, _numForPledgers, _numAgainstPledgers);
_setBondEscalation(_requestId, _numPledgers, _numPledgers);

// Set this dispute to have gone through the bond escalation process
bondEscalationModule.forTest_setEscalatedDispute(_requestId, _disputeId);
Expand All @@ -907,13 +905,13 @@ contract BondEscalationModule_Unit_OnDisputeStatusChange is BaseTest {
);

// Mock and expect IBondEscalationAccounting.onSettleBondEscalation to be called
vm.mockCall(
_mockAndExpect(
address(_params.accountingExtension),
abi.encodeCall(
IBondEscalationAccounting.onSettleBondEscalation,
(_requestId, _disputeId, _params.bondToken, _params.bondSize << 1, _numAgainstPledgers)
(_requestId, _disputeId, _params.bondToken, _params.bondSize << 1, _numPledgers)
),
abi.encode(true)
abi.encode()
);

// Check: is th event emitted?
Expand Down

0 comments on commit 14915c5

Please sign in to comment.