chainlink
chainlink copied to clipboard
add gateway connector capability config
CAPPL-19
- toml/types.go add
type ConnectorConfig struct {
type WorkflowConnectorConfig struct {
and add
WorkflowConnector WorkflowConnectorConfig `toml:", omitempty"`
to Capabilities.
- core/config/capabilities_config.go add
type ConnectorConfig interface {
type ConnectorGatewayConfig interface {
type WorkflowConnectorConfig interface {
- services/chainlink/config_capabilities.go add
type workflowConnectorConfig struct {
- delete core/services/gateway/connector/config.go
- core/services/gateway/connector/connector.go import config update ConnectorConfig to config.ConnectorConfig update function var from config to configLocal Now has a type error on configLocal.donId, see comment.