Add missing async suffix

This commit is contained in:
Amir Bandeali
2018-04-21 16:57:29 -07:00
parent 3335fc7baf
commit fcef1819b1
2 changed files with 12 additions and 12 deletions

View File

@@ -221,7 +221,7 @@ export class ExchangeWrapper {
);
return partialAmount;
}
public async getTakerTokenFilledAmount(orderHashHex: string): Promise<BigNumber> {
public async getTakerTokenFilledAmountAsync(orderHashHex: string): Promise<BigNumber> {
const filledAmount = new BigNumber(await this._exchange.filled.callAsync(orderHashHex));
return filledAmount;
}