From d3f729dd7197b9c6c64c41740803a73488977ebc Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Tue, 26 Sep 2017 11:55:07 +0200 Subject: rename validateOrderFillableThrowIfNotFillableAsync to validateOrderFillableOrThrowAsync --- src/contract_wrappers/exchange_wrapper.ts | 4 ++-- src/utils/order_validation_utils.ts | 2 +- 2 files changed, 3 insertions(+), 3 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 { 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, ); } diff --git a/src/utils/order_validation_utils.ts b/src/utils/order_validation_utils.ts index a7c487cf2..ba02390d5 100644 --- a/src/utils/order_validation_utils.ts +++ b/src/utils/order_validation_utils.ts @@ -13,7 +13,7 @@ export class OrderValidationUtils { this.tokenWrapper = tokenWrapper; this.exchangeWrapper = exchangeWrapper; } - public async validateOrderFillableThrowIfNotFillableAsync( + public async validateOrderFillableOrThrowAsync( signedOrder: SignedOrder, zrxTokenAddress: string, expectedFillTakerTokenAmount?: BigNumber.BigNumber, ): Promise { const orderHash = utils.getOrderHashHex(signedOrder); -- cgit