From f33493ecfa65be2922a0091cae2b8702f7d45274 Mon Sep 17 00:00:00 2001 From: Ryan Hall Date: Mon, 5 Aug 2024 13:30:40 -0400 Subject: [PATCH] wip --- core/capabilities/ccip/ccip_integration_tests/helpers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/capabilities/ccip/ccip_integration_tests/helpers.go b/core/capabilities/ccip/ccip_integration_tests/helpers.go index c6adddd4d6..3fe35c3928 100644 --- a/core/capabilities/ccip/ccip_integration_tests/helpers.go +++ b/core/capabilities/ccip/ccip_integration_tests/helpers.go @@ -216,6 +216,7 @@ func createUniverses( { SourceChainSelector: getSelector(chainID), Router: rout.Address(), + OnRamp: onramp.Address().Bytes(), }, }, ) @@ -713,6 +714,7 @@ func wireOffRamp(t *testing.T, uni onchainUniverse, universes map[uint64]onchain offrampSourceChainConfigArgs = append(offrampSourceChainConfigArgs, evm_2_evm_multi_offramp.EVM2EVMMultiOffRampSourceChainConfigArgs{ SourceChainSelector: getSelector(remoteChainID), // for each destination chain, add a source chain config IsEnabled: true, + Router: remoteUniverse.router.Address(), OnRamp: remoteUniverse.onramp.Address().Bytes(), }) }