Remove unnecessary conversion to BigNumber

This commit is contained in:
Fabio Berger 2018-11-12 10:25:33 +01:00
parent b21c1bea46
commit 8efc6c2112

View File

@ -212,7 +212,7 @@ export class ExchangeWrapper {
return tx; return tx;
} }
public async getTakerAssetFilledAmountAsync(orderHashHex: string): Promise<BigNumber> { public async getTakerAssetFilledAmountAsync(orderHashHex: string): Promise<BigNumber> {
const filledAmount = new BigNumber(await this._exchange.filled.callAsync(orderHashHex)); const filledAmount = await this._exchange.filled.callAsync(orderHashHex);
return filledAmount; return filledAmount;
} }
public async isCancelledAsync(orderHashHex: string): Promise<boolean> { public async isCancelledAsync(orderHashHex: string): Promise<boolean> {
@ -220,7 +220,7 @@ export class ExchangeWrapper {
return isCancelled; return isCancelled;
} }
public async getOrderEpochAsync(makerAddress: string, senderAddress: string): Promise<BigNumber> { public async getOrderEpochAsync(makerAddress: string, senderAddress: string): Promise<BigNumber> {
const orderEpoch = new BigNumber(await this._exchange.orderEpoch.callAsync(makerAddress, senderAddress)); const orderEpoch = await this._exchange.orderEpoch.callAsync(makerAddress, senderAddress);
return orderEpoch; return orderEpoch;
} }
public async getOrderInfoAsync(signedOrder: SignedOrder): Promise<OrderInfo> { public async getOrderInfoAsync(signedOrder: SignedOrder): Promise<OrderInfo> {