dsa-connectors-old/contracts/tests/mockOneProto.sol

25 lines
654 B
Solidity
Raw Normal View History

pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
2020-08-19 19:39:28 +00:00
import { ConnectOne } from "../connectors/1inch.sol";
contract MockConnectOne is ConnectOne {
address public oneProtoAddr;
constructor(address _oneProtoAddr) public {
oneProtoAddr = _oneProtoAddr;
}
function emitEvent(bytes32 eventCode, bytes memory eventData) override internal {}
function setUint(uint setId, uint val) override internal {}
function sub(uint x, uint y) internal override pure returns (uint z) {
2020-08-03 07:19:29 +00:00
z = 21 * 10 ** 18;
}
2020-08-03 07:19:29 +00:00
function getOneProtoAddress() internal override view returns (address payable) {
return payable(oneProtoAddr);
}
}