-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Agreement: Remove ETH as an option for fees #602
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,131 @@ | ||
pragma solidity 0.4.24; | ||
|
||
import "../../../../apps/disputable/IAgreement.sol"; | ||
|
||
contract AgreementMock { | ||
function newAction(uint256 /* _disputableActionId */, bytes /* _context */, address /* _submitter */) external payable returns (uint256) { | ||
|
||
contract AgreementMock is IAgreement { | ||
function sign() external { | ||
// do nothing | ||
} | ||
|
||
function activate( | ||
address, | ||
ERC20, | ||
uint256, | ||
uint256, | ||
uint64 | ||
) | ||
external | ||
{ | ||
// do nothing | ||
} | ||
|
||
function deactivate(address) external { | ||
// do nothing | ||
} | ||
|
||
function newAction(uint256 /* _disputableActionId */, bytes /* _context */, address /* _submitter */) external returns (uint256) { | ||
// do nothing | ||
return 0; | ||
} | ||
|
||
function closeAction(uint256 /* _actionId */) external { | ||
// do nothing | ||
} | ||
|
||
function challengeAction(uint256, uint256, bool, bytes) external { | ||
// do nothing | ||
} | ||
|
||
function settleAction(uint256) external { | ||
// do nothing | ||
} | ||
|
||
function disputeAction(uint256, bool) external { | ||
// do nothing | ||
} | ||
|
||
function getSigner(address) external view returns (uint256, bool) { | ||
// do nothing | ||
} | ||
|
||
function getCurrentSettingId() external view returns (uint256) { | ||
// do nothing | ||
} | ||
|
||
function getSetting(uint256) external view | ||
returns ( | ||
IArbitrator, | ||
IAragonAppFeesCashier, | ||
string, | ||
bytes | ||
) | ||
{ | ||
// do nothing | ||
} | ||
|
||
function getDisputableInfo(address) external view returns (bool, uint256) { | ||
// do nothing | ||
} | ||
|
||
function getCollateralRequirement(address, uint256) external view | ||
returns ( | ||
ERC20, | ||
uint256, | ||
uint256, | ||
uint64 | ||
) | ||
{ | ||
// do nothing | ||
} | ||
|
||
function getAction(uint256) external view | ||
returns ( | ||
address, | ||
uint256, | ||
uint256, | ||
uint256, | ||
address, | ||
bool, | ||
bytes, | ||
uint256 | ||
) | ||
{ | ||
// do nothing | ||
} | ||
|
||
function getChallenge(uint256) external view | ||
returns ( | ||
uint256, | ||
address, | ||
uint64, | ||
bytes, | ||
uint256, | ||
uint256, | ||
ERC20, | ||
ChallengeState, | ||
bool, | ||
bool, | ||
uint256, | ||
uint256 | ||
) | ||
{ | ||
// do nothing | ||
} | ||
|
||
function submitEvidence(uint256 _disputeId, bytes _evidence, bool _finished) external { | ||
// do nothing | ||
} | ||
|
||
function rule(uint256 _disputeId, uint256 _ruling) external { | ||
// do nothing | ||
} | ||
|
||
function supportsInterface(bytes4 _interfaceId) external pure returns (bool) { | ||
// do nothing | ||
} | ||
|
||
function canPerform(address, address, address, bytes32, uint256[]) external view returns (bool) { | ||
// do nothing | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ contract DisputableAppMock is DisputableAragonApp { | |
initialized(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we're missing one instance in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, if you can also clean up a few compiler warnings about this one it would be really helpful! |
||
} | ||
|
||
function newAction(uint256 _disputableActionId, bytes _context, address _submitter) external payable { | ||
function newAction(uint256 _disputableActionId, bytes _context, address _submitter) external { | ||
_newAgreementAction(_disputableActionId, _context, _submitter); | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you will need to mock all the methods then