aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/contract_wrappers/exchange_wrapper.ts26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts
index 46613af77..73ec0886c 100644
--- a/src/contract_wrappers/exchange_wrapper.ts
+++ b/src/contract_wrappers/exchange_wrapper.ts
@@ -303,15 +303,15 @@ export class ExchangeWrapper extends ContractWrapper {
_.unzip<any>(orderAddressesValuesAndTakerTokenFillAmounts);
const gas = await exchangeInstance.batchFillOrKill.estimateGas(
- orderAddresses,
- orderValues,
- fillTakerAmounts,
- vParams,
- rParams,
- sParams,
- {
- from: takerAddress,
- },
+ orderAddresses,
+ orderValues,
+ fillTakerAmounts,
+ vParams,
+ rParams,
+ sParams,
+ {
+ from: takerAddress,
+ },
);
const response: ContractResponse = await exchangeInstance.batchFillOrKill(
orderAddresses,
@@ -320,10 +320,10 @@ export class ExchangeWrapper extends ContractWrapper {
vParams,
rParams,
sParams,
- {
- from: takerAddress,
- gas,
- },
+ {
+ from: takerAddress,
+ gas,
+ },
);
this.throwErrorLogsAsErrors(response.logs);
}