aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/0x.ts')
-rw-r--r--src/0x.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/0x.ts b/src/0x.ts
index e92c92e1f..4a1d605a2 100644
--- a/src/0x.ts
+++ b/src/0x.ts
@@ -249,8 +249,8 @@ export class ZeroEx {
throw new Error(ZeroExError.InvalidSignature);
}
- public async awaitTransactionMined(txHash: string,
- pollingIntervalMs: number = 500): Promise<Web3.TransactionReceipt> {
+ public async awaitTransactionMinedAsync(txHash: string,
+ pollingIntervalMs: number = 500): Promise<Web3.TransactionReceipt> {
const txReceiptPromise = new Promise((resolve: (receipt: Web3.TransactionReceipt) => void, reject) => {
const intervalId = setInterval(async () => {
const transactionReceipt = await this._web3Wrapper.getTransactionReceiptAsync(txHash);