Skip to content

Commit e46bffc

Browse files
committed
Merge branch 'feat/erc20-fees-on-arbitrator' into feat/interfaces-v2-rebased2
2 parents 7a08a37 + 4e81aa6 commit e46bffc

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

contracts/src/arbitration/interfaces/IArbitratorV2.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ interface IArbitratorV2 {
6262
function arbitrationCost(bytes calldata _extraData) external view returns (uint256 cost);
6363

6464
/// @dev Compute the cost of arbitration denominated in `_feeToken`.
65-
/// It is recommended not to increase it often, as it can be highly time and gas consuming for the arbitrated contracts to cope with fee augmentation.
65+
/// It is recommended not to increase it often, as it can be highly time and gas consuming for the arbitrated contracts to cope with fee augmentation.
6666
/// @param _extraData Additional info about the dispute. We use it to pass the ID of the dispute's court (first 32 bytes), the minimum number of jurors required (next 32 bytes) and the ID of the specific dispute kit (last 32 bytes).
6767
/// @param _feeToken The ERC20 token used to pay fees.
6868
/// @return cost The arbitration cost in `_feeToken`.

contracts/src/gateway/HomeGateway.sol

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,4 @@ contract HomeGateway is IHomeGateway {
208208
function receiverGateway() external view override returns (address) {
209209
return foreignGateway;
210210
}
211-
212-
/// @inheritdoc IHomeGateway
213-
function acceptedFeeToken() external view returns (IERC20) {
214-
return feeToken;
215-
}
216211
}

contracts/src/gateway/interfaces/IHomeGateway.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ interface IHomeGateway is IArbitrableV2, ISenderGateway {
6868
function foreignGateway() external view returns (address);
6969

7070
/// return The fee token.
71-
function acceptedFeeToken() external view returns (IERC20);
71+
function feeToken() external view returns (IERC20);
7272
}

0 commit comments

Comments
 (0)