Skip to content

Commit

Permalink
disputable apps: Add ITransactionFeesOracle to Agreement settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ßingen committed Jun 30, 2020
1 parent 3c202d8 commit 91fd176
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion contracts/apps/disputable/IAgreement.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pragma solidity ^0.4.24;
import "../../acl/IACLOracle.sol";
import "../../lib/token/ERC20.sol";
import "../../lib/arbitration/IArbitrable.sol";
import "../../lib/arbitration/ITransactionFeesOracle.sol";


contract IAgreement is IArbitrable, IACLOracle {
Expand Down Expand Up @@ -61,7 +62,13 @@ contract IAgreement is IArbitrable, IACLOracle {

function getCurrentSettingId() external view returns (uint256);

function getSetting(uint256 _settingId) external view returns (IArbitrator arbitrator, string title, bytes content);
function getSetting(uint256 _settingId) external view
returns (
IArbitrator arbitrator,
ITransactionFeesOracle transactionFeesOracle,
string title,
bytes content
);

function getDisputableInfo(address _disputable) external view returns (bool registered, uint256 currentCollateralRequirementId);

Expand Down

0 comments on commit 91fd176

Please sign in to comment.