From cf35a8032d18a223bdbc4175c7d37c8faaa0cbb4 Mon Sep 17 00:00:00 2001 From: Amir Bandeali Date: Wed, 4 Sep 2019 11:34:17 -0700 Subject: [PATCH] Update contracts/exchange/contracts/src/MixinProtocolFees.sol Update comment Co-Authored-By: James Towle --- contracts/exchange/contracts/src/MixinProtocolFees.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/exchange/contracts/src/MixinProtocolFees.sol b/contracts/exchange/contracts/src/MixinProtocolFees.sol index 8373cf8ed3..da88503c1f 100644 --- a/contracts/exchange/contracts/src/MixinProtocolFees.sol +++ b/contracts/exchange/contracts/src/MixinProtocolFees.sol @@ -151,7 +151,7 @@ contract MixinProtocolFees is internal returns (uint256 valuePaid) { - // Do not send a value with the call if insufficient balance + // Do not send a value with the call if the exchange has an insufficient balance // The protocolFeeCollector contract will fallback to charging WETH if (exchangeBalance >= protocolFee) { valuePaid = protocolFee;