From 68fcc4005a59c65a39770fb3c075173281f1caee Mon Sep 17 00:00:00 2001 From: 0xAustinWang Date: Thu, 9 Jan 2025 11:31:05 +0800 Subject: [PATCH] changeset applies only once --- deployment/environment/crib/ccip_deployer.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deployment/environment/crib/ccip_deployer.go b/deployment/environment/crib/ccip_deployer.go index 639e42b4024..ff3199a81a9 100644 --- a/deployment/environment/crib/ccip_deployer.go +++ b/deployment/environment/crib/ccip_deployer.go @@ -4,6 +4,8 @@ import ( "context" "errors" "fmt" + "github.com/smartcontractkit/chainlink-ccip/chainconfig" + cciptypes "github.com/smartcontractkit/chainlink-ccip/pkg/types/ccipocr3" "math/big" "github.com/ethereum/go-ethereum/common" @@ -94,7 +96,6 @@ func DeployCCIPAndAddLanes(ctx context.Context, lggr logger.Logger, envConfig de ChainSelector: chain, }) } - // set up chains chainConfigs := make(map[uint64]changeset.ChainConfig) nodeInfo, err := deployment.NodeInfo(e.NodeIDs, e.Offchain)