From 68fa7ae2a3ab66d6798985d2d89d236dc4ec42dc Mon Sep 17 00:00:00 2001 From: Greg Hysen Date: Thu, 10 May 2018 14:25:17 -0700 Subject: Removed isRoundingError from mixin header --- .../current/protocol/Exchange/mixins/MExchangeCore.sol | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/mixins/MExchangeCore.sol b/packages/contracts/src/contracts/current/protocol/Exchange/mixins/MExchangeCore.sol index eb97be8b0..416cf426d 100644 --- a/packages/contracts/src/contracts/current/protocol/Exchange/mixins/MExchangeCore.sol +++ b/packages/contracts/src/contracts/current/protocol/Exchange/mixins/MExchangeCore.sol @@ -169,17 +169,8 @@ contract MExchangeCore is public returns (bool); + /// @dev Cancels all orders reated by sender with a salt less than or equal to the specified salt value. /// @param salt Orders created with a salt less or equal to this value will be cancelled. function cancelOrdersUpTo(uint256 salt) external; - -/* - /// @dev Checks if rounding error > 0.1%. - /// @param numerator Numerator. - /// @param denominator Denominator. - /// @param target Value to multiply with numerator/denominator. - /// @return Rounding error is present. - function isRoundingError(uint256 numerator, uint256 denominator, uint256 target) - public pure - returns (bool isError); */ } -- cgit v1.2.3