Skip to content

Commit

Permalink
udpate fn name
Browse files Browse the repository at this point in the history
  • Loading branch information
shunjizhan committed Dec 28, 2023
1 parent 6715d50 commit 57919f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export async function getTxReceiptWithRetry(
attempts++;
await new Promise((resolve) => setTimeout(resolve, retryTimeout));
try {
result = await provider.getReceiptByHash(hash);
result = await provider.getReceipt(hash);
} catch (e) {
if (retryAttempts !== undefined && attempts > retryAttempts) {
throw e;
Expand Down

0 comments on commit 57919f0

Please sign in to comment.