circle build failed. New commit to resubmit job.

This commit is contained in:
Greg Hysen 2018-12-23 21:57:59 -08:00
parent f39c03191c
commit 6892f929fb

View File

@ -279,7 +279,7 @@ export class ExchangeWrapper {
return data; return data;
} }
public abiDecodeFillOrder(data: string): AbiDecodedFillOrderData { public abiDecodeFillOrder(data: string): AbiDecodedFillOrderData {
// Lookup fillOrder ABI // Lookup fillOrder ABI in exchange abi
const fillOrderAbi = _.find(this._exchange.abi, (value: AbiDefinition) => { const fillOrderAbi = _.find(this._exchange.abi, (value: AbiDefinition) => {
if (value.type === 'function' && (value as any).name === 'fillOrder') { if (value.type === 'function' && (value as any).name === 'fillOrder') {
return true; return true;