Fix taker overpay check

This commit is contained in:
Remco Bloemen 2018-08-23 15:33:46 -07:00
parent b16f5f55fb
commit 07e56b3cc7

View File

@ -331,7 +331,7 @@ contract MixinExchangeCore is
// NOTE: This assertion should never fail, it is here
// as an extra defence against potential bugs.
require(
takerAssetFilledAmount <= takerAssetFilledAmount,
takerAssetFilledAmount <= takerAssetFillAmount,
"BUG_TAKER_OVERPAY"
);