Fix missed conflicts and rebuild

This commit is contained in:
Amir Bandeali
2019-04-22 11:01:10 -07:00
parent 0bcd47b394
commit 6fc30d31bf

View File

@@ -440,11 +440,7 @@ export class FillOrderCombinatorialUtils {
lazyStore: BalanceAndProxyAllowanceLazyStore,
fillRevertReasonIfExists: RevertReason | RevertError | undefined,
): Promise<void> {
<<<<<<< HEAD
if (fillRevertReasonIfExists !== undefined) {
=======
if (!_.isUndefined(fillRevertReasonIfExists)) {
>>>>>>> In `@0x/contracts-exchange`: Update tests for rich reverts
const tx = this.exchangeWrapper.fillOrderAsync(signedOrder, this.takerAddress, { takerAssetFillAmount });
return expect(tx).to.revertWith(fillRevertReasonIfExists);
}