From f6a945dfe4844d243ef67042b33e9ade2fc60308 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 5 Sep 2017 12:52:00 +0200 Subject: Fix the comment at awaitTransactionMinedAsync --- src/0x.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/0x.ts b/src/0x.ts index fd7d9b5a5..e1ba796c8 100644 --- a/src/0x.ts +++ b/src/0x.ts @@ -253,10 +253,10 @@ export class ZeroEx { throw new Error(ZeroExError.InvalidSignature); } /** - * Waits for transaction to be mined and returns the transaction receipt + * Waits for a transaction to be mined and returns the transaction receipt. * @param txHash Transaction hash * @param pollingIntervalMs How often (in ms) should we check if the transaction is mined. - * @return Web3.TransactionReceipt + * @return TransactionReceipt */ public async awaitTransactionMinedAsync(txHash: string, pollingIntervalMs: number = 500): Promise { -- cgit