@0x/contracts-exchange: More TestIsolatedExchange rework.

This commit is contained in:
Lawrence Forman
2019-07-31 10:24:00 -04:00
parent 039cc6e28b
commit e2bd80253b
3 changed files with 61 additions and 124 deletions

View File

@@ -4,7 +4,6 @@ import * as _ from 'lodash';
import { IsolatedExchangeWrapper, Order } from './utils/isolated_exchange_wrapper';
blockchainTests.resets.only('Isolated fillOrder() tests', env => {
const TOMORROW = Math.floor(_.now() / 1000) + 60 * 60 * 24;
const ERC20_ASSET_DATA_LENGTH = 24;
@@ -47,7 +46,6 @@ blockchainTests.resets.only('Isolated fillOrder() tests', env => {
takerAssetAmount: toBN(2),
});
const results = await testExchange.fillOrderAsync(order, 2);
// console.log(results, testExchange.getOrderHash(order));
});
}
});