Skip to content

Commit

Permalink
fixup! fixup! fixup! disputable: Add submitter fees to Agreement chal…
Browse files Browse the repository at this point in the history
…lenges
  • Loading branch information
ßingen committed Jul 30, 2020
1 parent c2f7db8 commit aa94db6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions contracts/apps/disputable/IAgreement.sol
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ contract IAgreement is IArbitrable, IACLOracle {
uint256 ruling
);

function getChallengeFees(uint256 _challengeId) external view
function getChallengeArbitratorFees(uint256 _challengeId) external view
returns (
uint256 challengerArbitratorFeeAmount,
ERC20 challengerArbitratorFeeToken,
uint256 submitterArbitratorFeeAmount,
ERC20 submitterArbitratorFeeToken
uint256 challengerArbitratorFeesAmount,
ERC20 challengerArbitratorFeesToken,
uint256 submitterArbitratorFeesAmount,
ERC20 submitterArbitratorFeesToken
);
}
2 changes: 1 addition & 1 deletion contracts/test/mocks/apps/disputable/AgreementMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ contract AgreementMock is IAgreement {
// do nothing
}

function getChallengeFees(uint256) external view
function getChallengeArbitratorFees(uint256) external view
returns (
uint256,
ERC20,
Expand Down

0 comments on commit aa94db6

Please sign in to comment.