From 0fc548aa92fbfeca2a47a9179ea0533cacdef398 Mon Sep 17 00:00:00 2001 From: 0xAustinWang Date: Tue, 19 Nov 2024 21:28:48 +0900 Subject: [PATCH 1/3] update tests and toml for rmn ugprade --- deployment/environment/devenv/rmn_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/environment/devenv/rmn_config.go b/deployment/environment/devenv/rmn_config.go index 59d5e5d1cdb..623499a6fe8 100644 --- a/deployment/environment/devenv/rmn_config.go +++ b/deployment/environment/devenv/rmn_config.go @@ -33,7 +33,7 @@ type SharedConfigNetworking struct { type HomeChain struct { Name string `toml:"name"` CapabilitiesRegistry string `toml:"capabilities_registry"` - CCIPConfig string `toml:"ccip_config"` + CCIPHome string `toml:"ccip_home"` RMNHome string `toml:"rmn_home"` } From ecf1290a78b035d16bb801f6803a9d1d76401b64 Mon Sep 17 00:00:00 2001 From: 0xAustinWang Date: Wed, 20 Nov 2024 00:00:18 +0900 Subject: [PATCH 2/3] goimport --- integration-tests/ccip-tests/testsetups/test_helpers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/ccip-tests/testsetups/test_helpers.go b/integration-tests/ccip-tests/testsetups/test_helpers.go index ea57f056945..e867c33975d 100644 --- a/integration-tests/ccip-tests/testsetups/test_helpers.go +++ b/integration-tests/ccip-tests/testsetups/test_helpers.go @@ -8,6 +8,8 @@ import ( "testing" "time" + "github.com/smartcontractkit/chainlink/deployment/ccip/changeset" + chainsel "github.com/smartcontractkit/chain-selectors" commonconfig "github.com/smartcontractkit/chainlink-common/pkg/config" From 8b0d4879c4a1d22d97d2067d870616285ce6ff63 Mon Sep 17 00:00:00 2001 From: 0xAustinWang Date: Wed, 20 Nov 2024 16:58:29 +0900 Subject: [PATCH 3/3] build --- integration-tests/ccip-tests/testsetups/test_helpers.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/integration-tests/ccip-tests/testsetups/test_helpers.go b/integration-tests/ccip-tests/testsetups/test_helpers.go index e867c33975d..da63b225784 100644 --- a/integration-tests/ccip-tests/testsetups/test_helpers.go +++ b/integration-tests/ccip-tests/testsetups/test_helpers.go @@ -8,8 +8,6 @@ import ( "testing" "time" - "github.com/smartcontractkit/chainlink/deployment/ccip/changeset" - chainsel "github.com/smartcontractkit/chain-selectors" commonconfig "github.com/smartcontractkit/chainlink-common/pkg/config" @@ -298,7 +296,7 @@ func GenerateTestRMNConfig(t *testing.T, nRMNNodes int, tenv ccipdeployment.Depl HomeChain: devenv.HomeChain{ Name: MustCCIPNameToRMNName(hc.Name), CapabilitiesRegistry: state.Chains[tenv.HomeChainSel].CapabilityRegistry.Address().String(), - CCIPConfig: state.Chains[tenv.HomeChainSel].CCIPHome.Address().String(), + CCIPHome: state.Chains[tenv.HomeChainSel].CCIPHome.Address().String(), RMNHome: state.Chains[tenv.HomeChainSel].RMNHome.Address().String(), }, RemoteChains: remoteChains,