Skip to content

Commit

Permalink
missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
krehermann committed Dec 20, 2024
1 parent 955f10c commit 9537fbe
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions deployment/keystone/changeset/internal/contract_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,21 +58,6 @@ func DeployCapabilitiesRegistry(chain deployment.Chain, ab deployment.AddressBoo
return capabilitiesRegistryResp, nil
}

// DeployWorkflowRegistry deploys the WorkflowRegistry contract to the chain
// and saves the address in the address book. This mutates the address book.
func DeployWorkflowRegistry(chain deployment.Chain, ab deployment.AddressBook) (*DeployResponse, error) {
deployer, err := NewWorkflowRegistryDeployer()
resp, err := deployer.Deploy(DeployRequest{Chain: chain})
if err != nil {
return nil, fmt.Errorf("failed to deploy WorkflowRegistry: %w", err)
}
err = ab.Save(chain.Selector, resp.Address.String(), resp.Tv)
if err != nil {
return nil, fmt.Errorf("failed to save WorkflowRegistry: %w", err)
}
return resp, nil
}

// DeployOCR3 deploys the OCR3Capability contract to the chain
// and saves the address in the address book. This mutates the address book.
func DeployOCR3(chain deployment.Chain, ab deployment.AddressBook) (*DeployResponse, error) {
Expand Down

0 comments on commit 9537fbe

Please sign in to comment.