diff options
Diffstat (limited to 'src/contract_wrappers')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index b56431082..a53d33ca9 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -632,13 +632,13 @@ export class ExchangeWrapper extends ContractWrapper { * interface. Allows specifying a specific fillTakerTokenAmount * to validate for. */ - public async validateOrderFillableThrowIfNotFillableAsync( + public async validateOrderFillableOrThrowAsync( signedOrder: SignedOrder, opts: ValidateOrderFillableOpts, ): Promise<void> { assert.doesConformToSchema('signedOrder', signedOrder, schemas.signedOrderSchema); const zrxTokenAddress = await this._getZRXTokenAddressAsync(); const expectedFillTakerTokenAmount = !_.isUndefined(opts) ? opts.expectedFillTakerTokenAmount : undefined; - await this._orderValidationUtils.validateOrderFillableThrowIfNotFillableAsync( + await this._orderValidationUtils.validateOrderFillableOrThrowAsync( signedOrder, zrxTokenAddress, expectedFillTakerTokenAmount, ); } |