Skip to content

Commit 91fd176

Browse files
author
ßingen
committed
disputable apps: Add ITransactionFeesOracle to Agreement settings
1 parent 3c202d8 commit 91fd176

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

contracts/apps/disputable/IAgreement.sol

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ pragma solidity ^0.4.24;
77
import "../../acl/IACLOracle.sol";
88
import "../../lib/token/ERC20.sol";
99
import "../../lib/arbitration/IArbitrable.sol";
10+
import "../../lib/arbitration/ITransactionFeesOracle.sol";
1011

1112

1213
contract IAgreement is IArbitrable, IACLOracle {
@@ -61,7 +62,13 @@ contract IAgreement is IArbitrable, IACLOracle {
6162

6263
function getCurrentSettingId() external view returns (uint256);
6364

64-
function getSetting(uint256 _settingId) external view returns (IArbitrator arbitrator, string title, bytes content);
65+
function getSetting(uint256 _settingId) external view
66+
returns (
67+
IArbitrator arbitrator,
68+
ITransactionFeesOracle transactionFeesOracle,
69+
string title,
70+
bytes content
71+
);
6572

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

0 commit comments

Comments
 (0)