aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/protocol/test/utils/exchange_wrapper.ts
diff options
context:
space:
mode:
Diffstat (limited to 'contracts/protocol/test/utils/exchange_wrapper.ts')
-rw-r--r--contracts/protocol/test/utils/exchange_wrapper.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/contracts/protocol/test/utils/exchange_wrapper.ts b/contracts/protocol/test/utils/exchange_wrapper.ts
index 0feb5af15..7eca809e6 100644
--- a/contracts/protocol/test/utils/exchange_wrapper.ts
+++ b/contracts/protocol/test/utils/exchange_wrapper.ts
@@ -279,7 +279,7 @@ export class ExchangeWrapper {
return data;
}
public abiDecodeFillOrder(data: string): AbiDecodedFillOrderData {
- // Lookup fillOrder ABI
+ // Lookup fillOrder ABI in exchange abi
const fillOrderAbi = _.find(this._exchange.abi, (value: AbiDefinition) => {
if (value.type === 'function' && (value as any).name === 'fillOrder') {
return true;