diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-05 18:52:00 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-05 18:52:00 +0800 |
commit | f6a945dfe4844d243ef67042b33e9ade2fc60308 (patch) | |
tree | 77bb032a203eb322dbaf8f4b290487e72862bc2c | |
parent | a12df1c73a97b3ba18ab53c1b25be39b837f6240 (diff) | |
download | dexon-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
-rw-r--r-- | src/0x.ts | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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> { |