Changed style

This commit is contained in:
Alex Towle
2020-04-24 13:31:47 -05:00
parent efb9dc51c9
commit 44d626e12e

View File

@@ -309,13 +309,12 @@ export class SwapQuoter {
assert.isBigNumber('makerAssetBuyAmount', makerAssetBuyAmount);
const makerAssetData = assetDataUtils.encodeERC20AssetData(makerTokenAddress);
const takerAssetData = assetDataUtils.encodeERC20AssetData(takerTokenAddress);
const swapQuote = await this.getMarketBuySwapQuoteForAssetDataAsync(
return this.getMarketBuySwapQuoteForAssetDataAsync(
makerAssetData,
takerAssetData,
makerAssetBuyAmount,
options,
);
return swapQuote;
}
/**
@@ -339,13 +338,12 @@ export class SwapQuoter {
assert.isBigNumber('takerAssetSellAmount', takerAssetSellAmount);
const makerAssetData = assetDataUtils.encodeERC20AssetData(makerTokenAddress);
const takerAssetData = assetDataUtils.encodeERC20AssetData(takerTokenAddress);
const swapQuote = await this.getMarketSellSwapQuoteForAssetDataAsync(
return this.getMarketSellSwapQuoteForAssetDataAsync(
makerAssetData,
takerAssetData,
takerAssetSellAmount,
options,
);
return swapQuote;
}
/**