Skip to content

Commit

Permalink
dry run logging
Browse files Browse the repository at this point in the history
  • Loading branch information
krehermann committed Nov 19, 2024
1 parent 5ef45b6 commit c30895f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion deployment/keystone/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,11 @@ type ConfigureOCR3Config struct {
}

func ConfigureOCR3ContractFromJD(env *deployment.Environment, cfg ConfigureOCR3Config) (*ConfigureOCR3Resp, error) {

prefix := ""
if cfg.DryRun {
prefix = "DRY RUN: "
}
env.Logger.Infof("%sconfiguring OCR3 contract for chain %d", cfg.ChainSel, prefix)
//func ConfigureOCR3ContractFromJD(env *deployment.Environment, chainSel uint64, nodeIDs []string, addrBook deployment.AddressBook, cfg *OracleConfigWithSecrets) (*ConfigureOCR3Resp, error) {
registryChain, ok := env.Chains[cfg.ChainSel]
if !ok {
Expand Down

0 comments on commit c30895f

Please sign in to comment.