From 1425b3eb8dd36def64aa21246c2b9e8e7d7723f2 Mon Sep 17 00:00:00 2001 From: AnieeG Date: Wed, 18 Sep 2024 12:47:37 -0700 Subject: [PATCH] remove toml tags --- integration-tests/deployment/multiclient.go | 30 ++++++++++----------- integration-tests/go.mod | 2 +- integration-tests/go.sum | 3 +-- 3 files changed, 17 insertions(+), 18 deletions(-) diff --git a/integration-tests/deployment/multiclient.go b/integration-tests/deployment/multiclient.go index b5cac349e2e..4d3d90c87a0 100644 --- a/integration-tests/deployment/multiclient.go +++ b/integration-tests/deployment/multiclient.go @@ -36,31 +36,31 @@ type MultiClient struct { } type RPC struct { - RPCName string `toml:"rpc_name"` - HTTPURL string `toml:"http_url"` - WSURL string `toml:"ws_url"` + RPCName string + HTTPURL string + WSURL string } type Config struct { - EnvConfig EnvConfig `toml:"env_config"` + EnvConfig EnvConfig } type EnvConfig struct { - TestWalletKey string `toml:"test_wallet_key"` - KmsDeployerKeyId string `toml:"kms_deployer_key_id"` - KmsDeployerKeyRegion string `toml:"kms_deployer_key_region"` - AwsProfileName string `toml:"aws_profile_name"` - EvmNetworks []EvmNetwork `toml:"evm_networks"` + TestWalletKey string + KmsDeployerKeyId string + KmsDeployerKeyRegion string + AwsProfileName string + EvmNetworks []EvmNetwork // Seth-related - GethWrappersDirs []string `toml:"geth_wrappers_dirs"` - SethConfigFile string `toml:"seth_config_file"` + GethWrappersDirs []string + SethConfigFile string } type EvmNetwork struct { - ChainID uint64 `toml:"chain_id"` - EtherscanAPIKey string `toml:"etherscan_api_key"` - EtherscanUrl string `toml:"etherscan_url"` - RPCs []RPC `toml:"rpcs"` + ChainID uint64 + EtherscanAPIKey string + EtherscanUrl string + RPCs []RPC } func initRpcClients(rpcs []RPC) (*ethclient.Client, []*ethclient.Client) { diff --git a/integration-tests/go.mod b/integration-tests/go.mod index fae9152e7d5..f393d7b7b2e 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -11,6 +11,7 @@ require ( github.com/Khan/genqlient v0.7.0 github.com/Masterminds/semver/v3 v3.2.1 github.com/avast/retry-go/v4 v4.6.0 + github.com/aws/aws-sdk-go v1.45.25 github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df github.com/chaos-mesh/chaos-mesh/api v0.0.0-20240821051457-da69c6d9617a github.com/cli/go-gh/v2 v2.0.0 @@ -107,7 +108,6 @@ require ( github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect github.com/avast/retry-go v3.0.0+incompatible // indirect github.com/awalterschulze/gographviz v2.0.3+incompatible // indirect - github.com/aws/aws-sdk-go v1.45.25 // indirect github.com/aws/aws-sdk-go-v2 v1.30.4 // indirect github.com/aws/aws-sdk-go-v2/config v1.27.28 // indirect github.com/aws/aws-sdk-go-v2/credentials v1.17.28 // indirect diff --git a/integration-tests/go.sum b/integration-tests/go.sum index 13ddaa47527..9ee36ab7d41 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1443,8 +1443,7 @@ github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.5 h1:Owb1MQZn0 github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.5/go.mod h1:hS4yNF94C1lkS9gvtFXW8Km8K9NzGeR20aNfkqo5qbE= github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0 h1:VIxK8u0Jd0Q/VuhmsNm6Bls6Tb31H/sA3A/rbc5hnhg= github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0/go.mod h1:lyAu+oMXdNUzEDScj2DXB2IueY+SDXPPfyl/kb63tMM= -github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.1 h1:2OxnPfvjC+zs0ZokSsRTRnJrEGJ4NVJwZgfroS1lPHs= -github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.1/go.mod h1:afY3QmNgeR/VI1pRbGH8g3YXGy7C2RrFOwUzEFvL3L8= +github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.4-0.20240912161944-13ade8436072 h1:/wGR8PUytZBze4DPnhzF+V7IVl/EslDmDC2SsamXjqw= github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.4-0.20240912161944-13ade8436072/go.mod h1:afY3QmNgeR/VI1pRbGH8g3YXGy7C2RrFOwUzEFvL3L8= github.com/smartcontractkit/chainlink-testing-framework/wasp v1.50.0 h1:gfhfTn7HkbUHNooSF3c9vzQyN8meWJVGt6G/pNUbpYk= github.com/smartcontractkit/chainlink-testing-framework/wasp v1.50.0/go.mod h1:tqajhpUJA/9OaMCLitghBXjAgqYO4i27St0F4TUO3+M=