Skip to content

Commit

Permalink
fix concurrent client (#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG authored Oct 23, 2023
1 parent ccb8ba3 commit 6618c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockchain/ethereum.go
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ func ConnectEVMClient(networkSettings EVMNetwork, logger zerolog.Logger) (EVMCli
func ConcurrentEVMClient(networkSettings EVMNetwork, env *environment.Environment, existing EVMClient, logger zerolog.Logger) (EVMClient, error) {
// if not simulated use the NewEVMClient
if !networkSettings.Simulated {
return NewEVMClient(networkSettings, env, logger)
return ConnectEVMClient(networkSettings, logger)
}
ecl := &EthereumMultinodeClient{}
if env != nil {
Expand Down

0 comments on commit 6618c3e

Please sign in to comment.