diff options
author | Fabio Berger <me@fabioberger.com> | 2017-06-07 23:23:59 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-06-07 23:23:59 +0800 |
commit | bc441015b672c310bd4b4a67fcf9a98e28793883 (patch) | |
tree | f16e2385fb5267d60715c7aad829e29546d7c1b1 /src/contract_wrappers | |
parent | 951d15b3cad954d995402e9379547fd2de90227f (diff) | |
download | dexon-sol-tools-bc441015b672c310bd4b4a67fcf9a98e28793883.tar dexon-sol-tools-bc441015b672c310bd4b4a67fcf9a98e28793883.tar.gz dexon-sol-tools-bc441015b672c310bd4b4a67fcf9a98e28793883.tar.bz2 dexon-sol-tools-bc441015b672c310bd4b4a67fcf9a98e28793883.tar.lz dexon-sol-tools-bc441015b672c310bd4b4a67fcf9a98e28793883.tar.xz dexon-sol-tools-bc441015b672c310bd4b4a67fcf9a98e28793883.tar.zst dexon-sol-tools-bc441015b672c310bd4b4a67fcf9a98e28793883.zip |
add `hex` to function and variable name for clarity
Diffstat (limited to 'src/contract_wrappers')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index f6451a3cc..d25b8aa29 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -292,11 +292,11 @@ export class ExchangeWrapper extends ContractWrapper { logEventObj.watch(callback); this.exchangeLogEventObjs.push(logEventObj); } - private async getOrderHashAsync(order: Order|SignedOrder): Promise<string> { + private async getOrderHashHexAsync(order: Order|SignedOrder): Promise<string> { const [orderAddresses, orderValues] = ExchangeWrapper.getOrderAddressesAndValues(order); const exchangeInstance = await this.getExchangeContractAsync(); - const orderHash = utils.getOrderHashHex(order, exchangeInstance.address); - return orderHash; + const orderHashHex = utils.getOrderHashHex(order, exchangeInstance.address); + return orderHashHex; } private async stopWatchingExchangeLogEventsAsync() { const stopWatchingPromises = _.map(this.exchangeLogEventObjs, logEventObj => { @@ -334,7 +334,7 @@ export class ExchangeWrapper extends ContractWrapper { if (takerTokenCancelAmount.eq(0)) { throw new Error(ExchangeContractErrs.ORDER_CANCEL_AMOUNT_ZERO); } - const orderHash = await this.getOrderHashAsync(order); + const orderHash = await this.getOrderHashHexAsync(order); const unavailableAmount = await this.getUnavailableTakerAmountAsync(orderHash); if (order.takerTokenAmount.minus(unavailableAmount).eq(0)) { throw new Error(ExchangeContractErrs.ORDER_ALREADY_CANCELLED_OR_FILLED); |