From 794b11b4b6abc00b54c0102fe718a9ba75db6e23 Mon Sep 17 00:00:00 2001 From: Elias Tazartes <66871571+Eikix@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:41:35 +0100 Subject: [PATCH] fix url parsing in benchmark (#845) --- benchmarks/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/index.ts b/benchmarks/index.ts index eaab43cb1..be719267e 100644 --- a/benchmarks/index.ts +++ b/benchmarks/index.ts @@ -28,7 +28,7 @@ if (interTransactionDelay === undefined) { ); } -const provider = new JsonRpcProvider(`http://${rpcUrl}`); +const provider = new JsonRpcProvider(`${rpcUrl}`); const wallet = new Wallet(privateKey, provider); const recipient = Wallet.createRandom().address;