From c278a93f2f2b1525e85425f9a0d3ece821ded10e Mon Sep 17 00:00:00 2001 From: Lukasz <120112546+lukaszcl@users.noreply.github.com> Date: Wed, 28 Aug 2024 17:42:57 +0200 Subject: [PATCH] Set HTTPURLs in EVMClient for simulated network (#1106) --- blockchain/ethereum.go | 1 + 1 file changed, 1 insertion(+) diff --git a/blockchain/ethereum.go b/blockchain/ethereum.go index 3565f2400..276afc0f9 100644 --- a/blockchain/ethereum.go +++ b/blockchain/ethereum.go @@ -1321,6 +1321,7 @@ func NewEVMClient(networkSettings EVMNetwork, env *environment.Environment, logg return nil, fmt.Errorf("network %s not found in environment", networkSettings.Name) } networkSettings.URLs = env.URLs[networkSettings.Name] + networkSettings.HTTPURLs = env.URLs[networkSettings.Name+"_http"] } return ConnectEVMClient(networkSettings, logger)