aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-09-05 18:52:00 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-09-05 18:52:00 +0800
commitf6a945dfe4844d243ef67042b33e9ade2fc60308 (patch)
tree77bb032a203eb322dbaf8f4b290487e72862bc2c /src
parenta12df1c73a97b3ba18ab53c1b25be39b837f6240 (diff)
downloaddexon-sol-tools-f6a945dfe4844d243ef67042b33e9ade2fc60308.tar
dexon-sol-tools-f6a945dfe4844d243ef67042b33e9ade2fc60308.tar.gz
dexon-sol-tools-f6a945dfe4844d243ef67042b33e9ade2fc60308.tar.bz2
dexon-sol-tools-f6a945dfe4844d243ef67042b33e9ade2fc60308.tar.lz
dexon-sol-tools-f6a945dfe4844d243ef67042b33e9ade2fc60308.tar.xz
dexon-sol-tools-f6a945dfe4844d243ef67042b33e9ade2fc60308.tar.zst
dexon-sol-tools-f6a945dfe4844d243ef67042b33e9ade2fc60308.zip
Fix the comment at awaitTransactionMinedAsync
Diffstat (limited to 'src')
-rw-r--r--src/0x.ts4
1 files 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<TransactionReceipt> {