From 7da3b143a5c2015ac9eb65483d42d5af667f56c1 Mon Sep 17 00:00:00 2001 From: yashnevatia Date: Mon, 6 Jan 2025 15:16:44 +0000 Subject: [PATCH] adding nil for crib sol chains --- deployment/environment/crib/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deployment/environment/crib/types.go b/deployment/environment/crib/types.go index d19c8424443..771880053f9 100644 --- a/deployment/environment/crib/types.go +++ b/deployment/environment/crib/types.go @@ -2,6 +2,7 @@ package crib import ( "context" + "github.com/smartcontractkit/chainlink-common/pkg/logger" "github.com/smartcontractkit/chainlink/deployment" "github.com/smartcontractkit/chainlink/deployment/environment/devenv" @@ -32,6 +33,7 @@ func NewDeployEnvironmentFromCribOutput(lggr logger.Logger, output DeployOutput) lggr, output.AddressBook, chains, + nil, // nil for solana chains, can use memory solana chain example when required output.NodeIDs, nil, // todo: populate the offchain client using output.DON func() context.Context { return context.Background() }, deployment.XXXGenerateTestOCRSecrets(),