aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/utils/balance_threshold_wrapper.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contracts/test/utils/balance_threshold_wrapper.ts')
-rw-r--r--packages/contracts/test/utils/balance_threshold_wrapper.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/contracts/test/utils/balance_threshold_wrapper.ts b/packages/contracts/test/utils/balance_threshold_wrapper.ts
index ac7bdd593..cff40aa52 100644
--- a/packages/contracts/test/utils/balance_threshold_wrapper.ts
+++ b/packages/contracts/test/utils/balance_threshold_wrapper.ts
@@ -227,6 +227,10 @@ export class BalanceThresholdWrapper {
public getExchangeAddress(): string {
return this._exchange.address;
}
+ // Exchange functions
+ //abiEncodeFillOrder
+ //getFillOrderResultsAsync
+ //
private async _executeTransaction(abiEncodedExchangeTxData: string, from: string, gas?: number): Promise<TransactionReceiptWithDecodedLogs> {
const signedExchangeTx = this._signerTransactionFactory.newSignedTransaction(abiEncodedExchangeTxData);
const txOpts = _.isUndefined(gas) ? {from} : {from, gas};