diff options
author | Fabio Berger <me@fabioberger.com> | 2017-09-26 17:55:07 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-09-26 17:55:07 +0800 |
commit | d3f729dd7197b9c6c64c41740803a73488977ebc (patch) | |
tree | 54372d978994f1b1d2e1834ad47b404e686c4cb3 /src | |
parent | 9effd572298a9e758078c512eabacc4573524efe (diff) | |
download | dexon-sol-tools-d3f729dd7197b9c6c64c41740803a73488977ebc.tar dexon-sol-tools-d3f729dd7197b9c6c64c41740803a73488977ebc.tar.gz dexon-sol-tools-d3f729dd7197b9c6c64c41740803a73488977ebc.tar.bz2 dexon-sol-tools-d3f729dd7197b9c6c64c41740803a73488977ebc.tar.lz dexon-sol-tools-d3f729dd7197b9c6c64c41740803a73488977ebc.tar.xz dexon-sol-tools-d3f729dd7197b9c6c64c41740803a73488977ebc.tar.zst dexon-sol-tools-d3f729dd7197b9c6c64c41740803a73488977ebc.zip |
rename validateOrderFillableThrowIfNotFillableAsync to validateOrderFillableOrThrowAsync
Diffstat (limited to 'src')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 4 | ||||
-rw-r--r-- | 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<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, ); } 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<void> { const orderHash = utils.getOrderHashHex(signedOrder); |