From 6ea209ec67199a8ccc1aca4d4c6f3c36da921e76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Thu, 30 May 2024 13:39:28 -0700 Subject: [PATCH] remove argument for removed parameter --- test/test_runner.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/test_runner.go b/test/test_runner.go index febd4e2e..a1ceda35 100644 --- a/test/test_runner.go +++ b/test/test_runner.go @@ -29,7 +29,6 @@ import ( "github.com/onflow/atree" "github.com/onflow/flow-go/fvm/environment" "github.com/onflow/flow-go/fvm/evm" - "github.com/onflow/flow-go/fvm/systemcontracts" "github.com/onflow/flow-go/model/flow" "github.com/onflow/cadence/runtime" @@ -818,12 +817,10 @@ func setupEVMEnvironment( fvmEnv environment.Environment, runtimeEnv runtime.Environment, ) error { - sc := systemcontracts.SystemContractsForChain(chain.ChainID()) return evm.SetupEnvironment( chain.ChainID(), fvmEnv, runtimeEnv, - sc.FlowToken.Address, ) }