minor changes in dydx Resolver

This commit is contained in:
Thrilok Kumar 2020-05-21 16:20:24 +05:30
parent eb3eb30fb2
commit 1289707a61

View File

@ -15,13 +15,13 @@ interface ERC20Interface {
interface SoloMarginContract {
struct Info {
address owner; // The address that owns the account
uint256 number; // A nonce that allows a single address to control many accounts
address owner;
uint256 number;
}
struct Wei {
bool sign; // true if positive
bool sign;
uint256 value;
}
@ -46,11 +46,6 @@ interface SoloMarginContract {
function getMarketCurrentIndex(uint256 marketId) external view returns (Index memory);
}
interface RegistryInterface {
function proxies(address owner) external view returns (address);
}
contract DSMath {
function add(uint x, uint y) internal pure returns (uint z) {