aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/extensions/test/utils/dutch_auction_test_wrapper.ts
diff options
context:
space:
mode:
authorGreg Hysen <greg.hysen@gmail.com>2018-12-23 05:11:14 +0800
committerGreg Hysen <greg.hysen@gmail.com>2019-01-08 07:50:48 +0800
commit61a33688264d31be063cd11260d9f37f3774975b (patch)
treede4550faeb7e963310f394de5701e07954edc95c /contracts/extensions/test/utils/dutch_auction_test_wrapper.ts
parent55e3774480eda205dd14650d9b9f7511f3d03dd6 (diff)
downloaddexon-0x-contracts-61a33688264d31be063cd11260d9f37f3774975b.tar
dexon-0x-contracts-61a33688264d31be063cd11260d9f37f3774975b.tar.gz
dexon-0x-contracts-61a33688264d31be063cd11260d9f37f3774975b.tar.bz2
dexon-0x-contracts-61a33688264d31be063cd11260d9f37f3774975b.tar.lz
dexon-0x-contracts-61a33688264d31be063cd11260d9f37f3774975b.tar.xz
dexon-0x-contracts-61a33688264d31be063cd11260d9f37f3774975b.tar.zst
dexon-0x-contracts-61a33688264d31be063cd11260d9f37f3774975b.zip
`afterAuctionDetails` -> `auctionDetails`
Diffstat (limited to 'contracts/extensions/test/utils/dutch_auction_test_wrapper.ts')
-rw-r--r--contracts/extensions/test/utils/dutch_auction_test_wrapper.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/contracts/extensions/test/utils/dutch_auction_test_wrapper.ts b/contracts/extensions/test/utils/dutch_auction_test_wrapper.ts
index 4dc83a5e7..c1e2f2070 100644
--- a/contracts/extensions/test/utils/dutch_auction_test_wrapper.ts
+++ b/contracts/extensions/test/utils/dutch_auction_test_wrapper.ts
@@ -56,7 +56,7 @@ export class DutchAuctionTestWrapper {
* @return The dutch auction details.
*/
public async getAuctionDetailsAsync(sellOrder: SignedOrder): Promise<DutchAuctionDetails> {
- const afterAuctionDetails = await this._dutchAuctionContract.getAuctionDetails.callAsync(sellOrder);
- return afterAuctionDetails;
+ const auctionDetails = await this._dutchAuctionContract.getAuctionDetails.callAsync(sellOrder);
+ return auctionDetails;
}
}