From 37d3103871d4f2c7e6113f4b084e5ccf59da1fbc Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 2 Nov 2022 12:33:21 +0100 Subject: [PATCH] fix label --- apps/etherscan/src/app/RemixPlugin.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/etherscan/src/app/RemixPlugin.tsx b/apps/etherscan/src/app/RemixPlugin.tsx index 0000e73b82..809c4d3d9b 100644 --- a/apps/etherscan/src/app/RemixPlugin.tsx +++ b/apps/etherscan/src/app/RemixPlugin.tsx @@ -17,7 +17,7 @@ export class RemixClient extends PluginClient { async receiptStatus (receiptGuid: string, apiKey: string) { const network = await getNetworkName(this) if (network === "vm") { - throw new Error("Cannot check the receip status in the selected network") + throw new Error("Cannot check the receipt status in the selected network") } const etherscanApi = getEtherScanApi(network) return getReceiptStatus(receiptGuid, apiKey, etherscanApi)