File tree 1 file changed +8
-1
lines changed
contracts/apps/disputable
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ pragma solidity ^0.4.24;
7
7
import "../../acl/IACLOracle.sol " ;
8
8
import "../../lib/token/ERC20.sol " ;
9
9
import "../../lib/arbitration/IArbitrable.sol " ;
10
+ import "../../lib/arbitration/ITransactionFeesOracle.sol " ;
10
11
11
12
12
13
contract IAgreement is IArbitrable , IACLOracle {
@@ -61,7 +62,13 @@ contract IAgreement is IArbitrable, IACLOracle {
61
62
62
63
function getCurrentSettingId () external view returns (uint256 );
63
64
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
+ );
65
72
66
73
function getDisputableInfo (address _disputable ) external view returns (bool registered , uint256 currentCollateralRequirementId );
67
74
You can’t perform that action at this time.
0 commit comments