From 69ab913bc6e155042af5fb2b2f0b740cd1d2399c Mon Sep 17 00:00:00 2001 From: Remco Bloemen Date: Fri, 23 Feb 2018 14:59:04 -0800 Subject: Remove unused return value --- .../src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol | 3 --- 1 file changed, 3 deletions(-) (limited to 'packages') diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol b/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol index 1df5145ab..9f441b708 100644 --- a/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol +++ b/packages/contracts/src/contracts/current/protocol/Exchange/MixinWrapperFunctions.sol @@ -159,15 +159,12 @@ contract MixinWrapperFunctions is /// @param orderValues Array of order's makerTokenAmount, takerTokenAmount, makerFee, takerFee, expirationTimestampInSec, and salt. /// @param takerTokenFillAmount Desired amount of takerToken to fill. /// @param signatures Maker's signatures of the orders. - /// @return Success if the transaction did not revert. - /// @return Total amount of takerToken filled in trade. function batchFillOrdersNoThrow( address[5][] orderAddresses, uint[6][] orderValues, uint[] takerTokenFillAmounts, bytes[] signatures) external - returns (uint) { for (uint256 i = 0; i < orderAddresses.length; i++) { fillOrderNoThrow( -- cgit v1.2.3